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

16 lines
322 B
Nix
Raw Normal View History

{ buildGoPackage, fetchgit }:
2016-06-03 15:13:10 +03:00
buildGoPackage rec {
name = "pup-${version}";
version = "0.4.0";
rev = "v${version}";
2016-06-03 15:13:10 +03:00
goPackagePath = "github.com/ericchiang/pup";
src = fetchgit {
inherit rev;
url = "https://${goPackagePath}";
sha256 = "0mnhw0yph5fvcnrcmj1kfbyw1a4lcg3k9f6y28kf44ihlq8h1dfz";
2016-06-03 15:13:10 +03:00
};
}