dapper: init at v0.4.1

This commit is contained in:
N G 2019-05-31 11:07:50 +02:00
parent f244c4fe5e
commit f9d83f4ee0
2 changed files with 33 additions and 0 deletions

View 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 ];
};
}

View File

@ -24146,4 +24146,6 @@ in
bemenu = callPackage ../applications/misc/bemenu { };
dapper = callPackage ../development/tools/dapper { };
}