1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

revert to __impureHostDeps where possible

This commit is contained in:
Jude Taylor 2015-11-25 10:09:35 -08:00
parent 8ea29441cf
commit d539d9c935
2 changed files with 2 additions and 4 deletions

View file

@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
];
};
sandboxProfile = stdenv.lib.sandbox.allowFileRead "/dev/ptmx";
__impureHostDeps = [ "/dev/ptmx" ];
# To fix the trouble in vim73, that it cannot cross-build with this patch
# to bypass a configure script check that cannot be done cross-building.

View file

@ -96,9 +96,7 @@ let
propagatedBuildInputs = deps;
# allows building the symlink tree
sandboxProfile = ''
(allow file-read* (subpath "/System/Library/Frameworks/${name}.framework"))
'';
__impureHostDeps = [ "/System/Library/Frameworks/${name}.framework" ];
__propagatedImpureHostDeps = stdenv.lib.optional (name != "Kernel") "/System/Library/Frameworks/${name}.framework/${name}";