Loading pkgs/applications/misc/go-thumbnailer/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { 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 ]; }; } pkgs/applications/misc/go-thumbnailer/go.thumbnailer 0 → 100644 +3 −0 Original line number Diff line number Diff line [Thumbnailer Entry] Exec=@out@/bin/go-thumbnailer %s %i %o MimeType=inode/directory pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5173,6 +5173,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
pkgs/applications/misc/go-thumbnailer/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { 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 ]; }; }
pkgs/applications/misc/go-thumbnailer/go.thumbnailer 0 → 100644 +3 −0 Original line number Diff line number Diff line [Thumbnailer Entry] Exec=@out@/bin/go-thumbnailer %s %i %o MimeType=inode/directory
pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5173,6 +5173,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; };