darwin: add impure-cmds

On darwin, there are some commands neither opensource nor able to build in nixpkgs.
We have no choice but to use those system-shipped impure ones.
This commit is contained in:
Monson Shao
2021-01-17 23:44:40 +08:00
parent 2fbc36f3d8
commit 5f1d105505
3 changed files with 38 additions and 2 deletions
+3 -1
View File
@@ -4,9 +4,11 @@
let
apple-source-releases = callPackage ../os-specific/darwin/apple-source-releases { };
impure-cmds = callPackage ../os-specific/darwin/impure-cmds { };
in
(apple-source-releases // {
(impure-cmds // apple-source-releases // {
callPackage = newScope (darwin.apple_sdk.frameworks // darwin);