Merge pull request #197309 from qowoz/hound

authored by

Sandro and committed by
GitHub
eebe7c85 501e1a29

+5 -2
-1
nixos/modules/services/search/hound.nix
··· 120 " -conf ${pkgs.writeText "hound.json" cfg.config}"; 121 122 }; 123 - path = [ pkgs.git pkgs.mercurial pkgs.openssh ]; 124 }; 125 }; 126
··· 120 " -conf ${pkgs.writeText "hound.json" cfg.config}"; 121 122 }; 123 }; 124 }; 125
+5 -1
pkgs/development/tools/misc/hound/default.nix
··· 4 , makeWrapper 5 , mercurial 6 , git 7 }: 8 9 buildGoModule rec { ··· 25 doCheck = false; 26 27 postInstall = '' 28 - wrapProgram $out/bin/houndd --prefix PATH : ${lib.makeBinPath [ mercurial git ]} 29 ''; 30 31 meta = with lib; { 32 inherit (src.meta) homepage;
··· 4 , makeWrapper 5 , mercurial 6 , git 7 + , openssh 8 + , nixosTests 9 }: 10 11 buildGoModule rec { ··· 27 doCheck = false; 28 29 postInstall = '' 30 + wrapProgram $out/bin/houndd --prefix PATH : ${lib.makeBinPath [ mercurial git openssh ]} 31 ''; 32 + 33 + passthru.tests = { inherit (nixosTests) hound; }; 34 35 meta = with lib; { 36 inherit (src.meta) homepage;