Skip to content

Commit

Permalink
sshuttle: fix build on i686-linux
Browse files Browse the repository at this point in the history
  • Loading branch information
volth committed Mar 14, 2018
1 parent 3887b6b commit f161fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/tools/security/sshuttle/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ python3Packages.buildPythonApplication rec {
})
];

nativeBuildInputs = [ makeWrapper pandoc python3Packages.setuptools_scm ];
nativeBuildInputs = [ makeWrapper python3Packages.setuptools_scm ] ++ stdenv.lib.optional (stdenv.system != "i686-linux") pandoc;
buildInputs =
[ coreutils openssh ] ++
stdenv.lib.optionals stdenv.isLinux [ iptables nettools procps ];
Expand Down

0 comments on commit f161fe0

Please sign in to comment.