dapper: init at v0.4.1
This commit is contained in:
parent
f244c4fe5e
commit
f9d83f4ee0
31
pkgs/development/tools/dapper/default.nix
Normal file
31
pkgs/development/tools/dapper/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
||||
|
@ -24146,4 +24146,6 @@ in
|
||||
|
||||
bemenu = callPackage ../applications/misc/bemenu { };
|
||||
|
||||
dapper = callPackage ../development/tools/dapper { };
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user