Skip to content

Commit

Permalink
shell.nix: do not enforce purity
Browse files Browse the repository at this point in the history
  • Loading branch information
mmahut authored and prusnak committed Jan 16, 2020
1 parent 783fa80 commit 6c6e618
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion shell.nix
Expand Up @@ -36,7 +36,8 @@ stdenv.mkDerivation {
darwin.libobjc
libiconv
];
LD_LIBRARY_PATH="${libffi}/lib:${libjpeg.out}/lib:${libusb1}/lib:${libressl.out}/lib";
LD_LIBRARY_PATH = "${libffi}/lib:${libjpeg.out}/lib:${libusb1}/lib:${libressl.out}/lib";
NIX_ENFORCE_PURITY = 0;
shellHook = ''
pipenv shell
exit
Expand Down

0 comments on commit 6c6e618

Please sign in to comment.