1
0
forked from extern/nix-config
donovanglover-nix-config/applications/thunar/go-thumbnailer/default.nix
Donovan Glover b64cb3183b
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.
2023-06-02 09:25:53 -04:00

33 lines
684 B
Nix

{ 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 = [ ];
};
}