Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 23 lines 529 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "spruce"; 5 version = "1.31.0"; 6 7 src = fetchFromGitHub { 8 owner = "geofffranks"; 9 repo = pname; 10 rev = "v${version}"; 11 hash = "sha256-7BZl3GPEuXdZptbkChlmdUkxfIkA3B3IdPFO46zejQ4="; 12 }; 13 14 vendorHash = null; 15 16 meta = with lib; { 17 description = "BOSH template merge tool"; 18 mainProgram = "spruce"; 19 homepage = "https://github.com/geofffranks/spruce"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ risson ]; 22 }; 23}