nixpkgs/pkgs/tools/misc/pistol/default.nix

37 lines
779 B
Nix
Raw Normal View History

{ lib
2020-02-13 12:27:42 +00:00
, buildGoModule
, fetchFromGitHub
, file
}:
buildGoModule rec {
pname = "pistol";
2021-03-13 10:50:27 +00:00
version = "0.1.9";
2020-02-13 12:27:42 +00:00
src = fetchFromGitHub {
owner = "doronbehar";
repo = pname;
rev = "v${version}";
2021-03-13 10:50:27 +00:00
sha256 = "sha256-Q/W+1NvbuSu+QfezJpyeI5r4VlzdAAbOlSfFIT8knJs=";
2020-02-13 12:27:42 +00:00
};
2021-03-13 10:50:27 +00:00
vendorSha256 = "sha256-oXt2nZ9lcAiI9ZQtKuQrXOXDfqx3Ucvh/K6g7SScd2Q=";
2020-02-13 12:27:42 +00:00
doCheck = false;
2020-02-13 12:27:42 +00:00
subPackages = [ "cmd/pistol" ];
buildInputs = [
file
];
2020-07-18 09:20:00 +00:00
buildFlagsArray = [ "-ldflags=-s -w -X main.Version=${version}" ];
meta = with lib; {
2020-02-13 12:27:42 +00:00
description = "General purpose file previewer designed for Ranger, Lf to make scope.sh redundant";
homepage = "https://github.com/doronbehar/pistol";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar ];
};
2020-07-18 09:20:00 +00:00
}