summary refs log tree commit diff
path: root/pkgs/build-support/native-darwin-cctools-wrapper/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/build-support/native-darwin-cctools-wrapper/default.nix')
-rw-r--r--pkgs/build-support/native-darwin-cctools-wrapper/default.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/pkgs/build-support/native-darwin-cctools-wrapper/default.nix b/pkgs/build-support/native-darwin-cctools-wrapper/default.nix
deleted file mode 100644
index 8fed8183ec5..00000000000
--- a/pkgs/build-support/native-darwin-cctools-wrapper/default.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{stdenv}:
-
-stdenv.mkDerivation {
-  name = "native-darwin-cctools-wrapper";
-
-  # Standard binaries normally found under /usr/bin (MIG is omitted here, and
-  # handled specially in ./builder.sh).
-  binaries =
-    [ "ar" "as" "c++filt" "gprof" "ld" "nm" "nmedit" "ranlib"
-      "size" "strings" "strip" "dsymutil" "libtool" "lipo"
-      "install_name_tool" "arch" "sw_vers"
-    ];
-
-  builder = ./builder.sh;
-}