nixpkgs/pkgs/development/tools/pet/default.nix

28 lines
668 B
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, lib }:
2018-07-23 22:28:29 +01:00
buildGoModule rec {
pname = "pet";
2021-12-08 00:19:42 +00:00
version = "0.4.0";
2018-07-23 22:28:29 +01:00
src = fetchFromGitHub {
owner = "knqyf263";
repo = "pet";
rev = "v${version}";
2021-12-08 00:19:42 +00:00
sha256 = "sha256-gVTpzmXekQxGMucDKskGi+e+34nJwwsXwvQTjRO6Gdg=";
2018-07-23 22:28:29 +01:00
};
2021-12-08 00:19:42 +00:00
vendorSha256 = "sha256-vciiBzmqUAt5ZWn9go4B1uaz0HsBk5Z9Rbw7/MAimY4=";
doCheck = false;
subPackages = [ "." ];
2018-07-23 22:28:29 +01:00
meta = with lib; {
2018-07-23 22:28:29 +01:00
description = "Simple command-line snippet manager, written in Go";
homepage = "https://github.com/knqyf263/pet";
2018-07-23 22:28:29 +01:00
license = licenses.mit;
maintainers = with maintainers; [ kalbasit ];
platforms = platforms.linux ++ platforms.darwin;
};
}