31 lines
644 B
Nix
31 lines
644 B
Nix
{ buildGoPackage
|
|
, lib
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoPackage rec {
|
|
pname = "dapper";
|
|
version = "0.5.6";
|
|
|
|
goPackagePath = "github.com/rancher/dapper";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rancher";
|
|
repo = "dapper";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-o64r4TBDpICnVZMIX2jKQjoJkA/jAviJkvI/xJ4ToM8=";
|
|
};
|
|
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 ];
|
|
};
|
|
}
|
|
|