nixpkgs/pkgs/development/tools/misc/spruce/default.nix
Colin cf2c022aac
spruce: 1.29.0 -> unstable-2022-02-10
Update to use go117

Had to upstream some fixes to the main repo (and the vendor folder still
didn't work - a little confused).
2022-02-11 08:36:13 +10:00

24 lines
621 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "spruce";
version = "unstable-2022-02-10";
src = fetchFromGitHub {
owner = "geofffranks";
repo = pname;
rev = "473931f33fceae90b3f5cfb7616c296343a9559b";
sha256 = "sha256-TFyWkoAKmj3KH2pqhVKMtP6QKTtu0s7H5gNP+fotUzg=";
};
deleteVendor = true;
vendorSha256 = "sha256-VeC5c/BgcxK3Qawb2QOhqtfTIgbQbrQj546zX6yPD+s=";
meta = with lib; {
description = "A BOSH template merge tool";
homepage = "https://github.com/geofffranks/spruce";
license = licenses.mit;
maintainers = with maintainers; [ risson ];
};
}