meta: Add go-thumbnailer

It was surprisingly easy to package go-thumbnailer with nix, and it may
be a fun side project to make a pull request for nixpkgs.
This commit is contained in:
Donovan Glover 2023-06-02 09:25:41 -04:00
parent 4b3e662b3f
commit b64cb3183b
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "go-thumbnailer";
version = "0.1.0";
src = fetchFromGitHub {
owner = "donovanglover";
repo = pname;
rev = "${version}";
hash = lib.fakeSha256;
};
# proxyVendor = true;
vendorSha256 = lib.fakeSha256;
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 = [ ];
};
}

View File

@ -0,0 +1,3 @@
[Thumbnailer Entry]
Exec=go-thumbnailer %s %i %o
MimeType=inode/directory