summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/diskdev_cmds
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-10-02 23:14:32 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-12-17 00:07:09 -0600
commite6f7f2928f668262577125290dc90ad8df12e724 (patch)
tree51137393429625b57cfed94bfa0fb23f8ed20e45 /pkgs/os-specific/darwin/apple-source-releases/diskdev_cmds
parent73d537672db04cb0273842f8adf9164a73450f57 (diff)
downloadnixpkgs-e6f7f2928f668262577125290dc90ad8df12e724.tar
nixpkgs-e6f7f2928f668262577125290dc90ad8df12e724.tar.gz
nixpkgs-e6f7f2928f668262577125290dc90ad8df12e724.tar.bz2
nixpkgs-e6f7f2928f668262577125290dc90ad8df12e724.tar.lz
nixpkgs-e6f7f2928f668262577125290dc90ad8df12e724.tar.xz
nixpkgs-e6f7f2928f668262577125290dc90ad8df12e724.tar.zst
nixpkgs-e6f7f2928f668262577125290dc90ad8df12e724.zip
darwin: 10.11 → 10.12
Lots of stuff has gotten moved around. Many security libraries have been merged
into the Security monorepo. I’ve cleared them out for now, we will
need to modify Security to build them!

This also moves some things around to more clearly separate
bootstrapping the stdenv from everything else. We want the “normal”
mode to be the non-bootstrapped version. When you ask for “Security”,
you want the actual built software, not a crippled one.

- Add TARGET_OS_OSX to darwin.libSystem. Looks like something
  introduced in 10.12. TARGET_OS_MAC is only set when building for
  desktop (iOS will have TARGET_OS_MAC set)
- Bump darwin.dtrace
- Bump darwin.libpthread
- Remove SmartCardServices, libsecurity*, etc.
- Install some more headers for darling.
Diffstat (limited to 'pkgs/os-specific/darwin/apple-source-releases/diskdev_cmds')
-rw-r--r--pkgs/os-specific/darwin/apple-source-releases/diskdev_cmds/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/darwin/apple-source-releases/diskdev_cmds/default.nix b/pkgs/os-specific/darwin/apple-source-releases/diskdev_cmds/default.nix
index f27b5ae1302..fa77329008d 100644
--- a/pkgs/os-specific/darwin/apple-source-releases/diskdev_cmds/default.nix
+++ b/pkgs/os-specific/darwin/apple-source-releases/diskdev_cmds/default.nix
@@ -1,9 +1,9 @@
 { stdenv, appleDerivation, xcbuildHook
-, Libc, xnu, libutil-new }:
+, Libc, xnu, libutil }:
 
 appleDerivation {
   nativeBuildInputs = [ xcbuildHook ];
-  buildInputs = [ libutil-new ];
+  buildInputs = [ libutil ];
 
   NIX_CFLAGS_COMPILE = "-I.";
   NIX_LDFLAGS = "-lutil";