2006-07-14 13:59:38 +02:00
|
|
|
{stdenv}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "native-darwin-cctools-wrapper";
|
2012-04-23 17:47:31 +02:00
|
|
|
|
|
|
|
# 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"
|
|
|
|
];
|
|
|
|
|
2006-07-14 13:59:38 +02:00
|
|
|
builder = ./builder.sh;
|
|
|
|
}
|