nixpkgs/pkgs/build-support/native-darwin-cctools-wrapper/builder.sh
Shea Levy 68aaf3c843 Include Apple's libtool in darwin-cctools-wrapper
Packages which need GNU libtool should explicitly include it in buildInputs

svn path=/nixpkgs/trunk/; revision=30535
2011-11-23 02:39:09 +00:00

7 lines
168 B
Bash

source $stdenv/setup
ensureDir $out/bin
for i in ar as c++filt gprof ld nm nmedit ranlib size strings strip dsymutil libtool; do
ln -s /usr/bin/$i $out/bin/
done