nixpkgs/pkgs/development/tools/dapper/default.nix
2019-06-05 08:54:19 +02:00

32 lines
658 B
Nix

{ buildGoPackage
, lib
, fetchFromGitHub
, fetchpatch
}:
buildGoPackage rec {
pname = "dapper";
version = "0.4.1";
goPackagePath = "github.com/rancher/dapper";
src = fetchFromGitHub {
owner = "rancher";
repo = "dapper";
rev = "v${version}";
sha256 = "03rmkmlvhmfwcln5v1rqww1kirxm0d1p58h6pj8f5fnhk9spb162";
};
patchPhase = ''
substituteInPlace main.go --replace 0.0.0 ${version}
'';
meta = with lib; {
description = "Docker Build Wrapper";
homepage = "https://github.com/rancher/dapper";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ kuznero ];
};
}