go-thumbnailer: init at 0.1.0
This commit is contained in:
parent
f7d2276f86
commit
f58364c9f0
3 changed files with 45 additions and 0 deletions
40
pkgs/applications/misc/go-thumbnailer/default.nix
Normal file
40
pkgs/applications/misc/go-thumbnailer/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, vips
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "go-thumbnailer";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "donovanglover";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-sgd5kNnDXcSesGT+OignZ+APjNSxSP0Z60dr8cWO6sU=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
vips
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
vendorSha256 = "sha256-4zgsoExdhEqvycGerNVxZ6LnjeRRO+f6DhJdINR5ZyI=";
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/thumbnailers
|
||||
substituteAll ${./go.thumbnailer} $out/share/thumbnailers/go.thumbnailer
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A cover thumbnailer written in Go for performance and reliability";
|
||||
homepage = "https://github.com/donovanglover/go-thumbnailer";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ donovanglover ];
|
||||
};
|
||||
}
|
3
pkgs/applications/misc/go-thumbnailer/go.thumbnailer
Normal file
3
pkgs/applications/misc/go-thumbnailer/go.thumbnailer
Normal file
|
@ -0,0 +1,3 @@
|
|||
[Thumbnailer Entry]
|
||||
Exec=@out@/bin/go-thumbnailer %s %i %o
|
||||
MimeType=inode/directory
|
|
@ -5163,6 +5163,8 @@ with pkgs;
|
|||
|
||||
go-neb = callPackage ../applications/networking/instant-messengers/go-neb { };
|
||||
|
||||
go-thumbnailer = callPackage ../applications/misc/go-thumbnailer { };
|
||||
|
||||
geckodriver = callPackage ../development/tools/geckodriver {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue