lol

hound, nixos/hound: deduplicate runtime deps

zowoq 217bf31c e9b34e0d

+2 -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
+2 -1
pkgs/development/tools/misc/hound/default.nix
··· 4 4 , makeWrapper 5 5 , mercurial 6 6 , git 7 + , openssh 7 8 , nixosTests 8 9 }: 9 10 ··· 26 27 doCheck = false; 27 28 28 29 postInstall = '' 29 - wrapProgram $out/bin/houndd --prefix PATH : ${lib.makeBinPath [ mercurial git ]} 30 + wrapProgram $out/bin/houndd --prefix PATH : ${lib.makeBinPath [ mercurial git openssh ]} 30 31 ''; 31 32 32 33 passthru.tests = { inherit (nixosTests) hound; };