pkgs/tools: stdenv.lib -> lib
This commit is contained in:
@@ -23,11 +23,11 @@ python3Packages.buildPythonApplication rec {
|
||||
|
||||
checkInputs = with python3Packages; [ mock pytest pytestcov pytestrunner flake8 ];
|
||||
|
||||
runtimeDeps = [ coreutils openssh procps ] ++ stdenv.lib.optionals stdenv.isLinux [ iptables nettools ];
|
||||
runtimeDeps = [ coreutils openssh procps ] ++ lib.optionals stdenv.isLinux [ iptables nettools ];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/sshuttle \
|
||||
--prefix PATH : "${stdenv.lib.makeBinPath runtimeDeps}" \
|
||||
--prefix PATH : "${lib.makeBinPath runtimeDeps}" \
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
||||
Reference in New Issue
Block a user