at v192 15 lines 407 B view raw
1{stdenv}: 2 3stdenv.mkDerivation { 4 name = "native-darwin-cctools-wrapper"; 5 6 # Standard binaries normally found under /usr/bin (MIG is omitted here, and 7 # handled specially in ./builder.sh). 8 binaries = 9 [ "ar" "as" "c++filt" "gprof" "ld" "nm" "nmedit" "ranlib" 10 "size" "strings" "strip" "dsymutil" "libtool" "lipo" 11 "install_name_tool" "arch" "sw_vers" 12 ]; 13 14 builder = ./builder.sh; 15}