Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildGoModule, fetchFromGitHub }:
2
3buildGoModule rec {
4 pname = "spruce";
5 version = "unstable-2022-02-10";
6
7 src = fetchFromGitHub {
8 owner = "geofffranks";
9 repo = pname;
10 rev = "473931f33fceae90b3f5cfb7616c296343a9559b";
11 sha256 = "sha256-TFyWkoAKmj3KH2pqhVKMtP6QKTtu0s7H5gNP+fotUzg=";
12 };
13
14 deleteVendor = true;
15 vendorSha256 = "sha256-VeC5c/BgcxK3Qawb2QOhqtfTIgbQbrQj546zX6yPD+s=";
16
17 meta = with lib; {
18 description = "A BOSH template merge tool";
19 homepage = "https://github.com/geofffranks/spruce";
20 license = licenses.mit;
21 maintainers = with maintainers; [ risson ];
22 };
23}