depot/third_party/nixpkgs/pkgs/development/tools/misc/spruce/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

22 lines
503 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "spruce";
version = "1.30.2";
src = fetchFromGitHub {
owner = "geofffranks";
repo = pname;
rev = "v${version}";
hash = "sha256-flY81xiUfOyfdavhF0AyIwrB2G8N6BWltdGMT2uf9Co=";
};
vendorHash = null;
meta = with lib; {
description = "A BOSH template merge tool";
homepage = "https://github.com/geofffranks/spruce";
license = licenses.mit;
maintainers = with maintainers; [ risson ];
};
}