Merge branch 'libsystem-darwin-only'
Only require libsystem on darwin
This commit is contained in:
commit
8a2a3b6579
1 changed files with 2 additions and 2 deletions
|
@ -23,10 +23,10 @@ derivation {
|
||||||
# network traffic, so don't do that.
|
# network traffic, so don't do that.
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
|
|
||||||
__impureHostDeps = [
|
__impureHostDeps = if builtins.currentSystem == "x86_64-darwin" then [
|
||||||
"/usr/lib/libSystem.dylib"
|
"/usr/lib/libSystem.dylib"
|
||||||
"/usr/lib/system"
|
"/usr/lib/system"
|
||||||
];
|
] else null;
|
||||||
|
|
||||||
inherit chrootDeps;
|
inherit chrootDeps;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue