depot/third_party/nixpkgs/pkgs/development/tools/dapper/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

30 lines
644 B
Nix

{ buildGoPackage
, lib
, fetchFromGitHub
}:
buildGoPackage rec {
pname = "dapper";
version = "0.5.5";
goPackagePath = "github.com/rancher/dapper";
src = fetchFromGitHub {
owner = "rancher";
repo = "dapper";
rev = "v${version}";
sha256 = "sha256-QzPW1uC/WuYM/lLqyKodIozGTz5Qn1haoDvgNgjhrRA=";
};
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 ];
};
}