f3282c8d1e
* treewide: remove unused variables * making ofborg happy
31 lines
645 B
Nix
31 lines
645 B
Nix
{ buildGoPackage
|
|
, lib
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
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 ];
|
|
};
|
|
}
|
|
|