Skip to content

Commit

Permalink
debian-devscripts: add dpkg in PATH
Browse files Browse the repository at this point in the history
The script uscan was complaining about missing dpkg, therefore I have
added it to the PATH.

(cherry picked from commit 404c807)
  • Loading branch information
KaiHa authored and Mic92 committed Mar 25, 2018
1 parent d843d7f commit 1da25dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/tools/misc/debian-devscripts/default.nix
Expand Up @@ -54,7 +54,8 @@ in stdenv.mkDerivation rec {
wrapProgram "$i" \
--prefix PERL5LIB : "$PERL5LIB" \
--prefix PERL5LIB : "$out/share/devscripts" \
--prefix PYTHONPATH : "$out/lib/python3.4/site-packages"
--prefix PYTHONPATH : "$out/lib/python3.4/site-packages" \
--prefix PATH : "${dpkg}/bin"
done
'';

Expand Down

0 comments on commit 1da25dd

Please sign in to comment.