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