889482aab3
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
29 lines
614 B
Nix
29 lines
614 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "dapper";
|
|
version = "0.5.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rancher";
|
|
repo = "dapper";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-t1w8bhwCjZHmvgBG6Tv8kgqTbC7v5P5QOvJGuTJUC04=";
|
|
};
|
|
vendorSha256 = null;
|
|
|
|
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 ];
|
|
};
|
|
}
|