summary refs log tree commit diff
path: root/pkgs/development/tools/misc/spruce/default.nix
blob: 7c10a6ee0ca7e6056aa7923d4427cca91384727c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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 ];
  };
}