tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
hound, nixos/hound: deduplicate runtime deps
zowoq
3 years ago
217bf31c
e9b34e0d
+2
-2
2 changed files
expand all
collapse all
unified
split
nixos
modules
services
search
hound.nix
pkgs
development
tools
misc
hound
default.nix
-1
nixos/modules/services/search/hound.nix
reviewed
···
120
120
" -conf ${pkgs.writeText "hound.json" cfg.config}";
121
121
122
122
};
123
123
-
path = [ pkgs.git pkgs.mercurial pkgs.openssh ];
124
123
};
125
124
};
126
125
+2
-1
pkgs/development/tools/misc/hound/default.nix
reviewed
···
4
4
, makeWrapper
5
5
, mercurial
6
6
, git
7
7
+
, openssh
7
8
, nixosTests
8
9
}:
9
10
···
26
27
doCheck = false;
27
28
28
29
postInstall = ''
29
29
-
wrapProgram $out/bin/houndd --prefix PATH : ${lib.makeBinPath [ mercurial git ]}
30
30
+
wrapProgram $out/bin/houndd --prefix PATH : ${lib.makeBinPath [ mercurial git openssh ]}
30
31
'';
31
32
32
33
passthru.tests = { inherit (nixosTests) hound; };