summary refs log tree commit diff
path: root/pkgs/build-support/native-darwin-cctools-wrapper/default.nix
blob: 8fed8183ec566fcaa5a13412482b63f0aae20ffe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{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;
}