mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
68aaf3c843
Packages which need GNU libtool should explicitly include it in buildInputs svn path=/nixpkgs/trunk/; revision=30535
7 lines
168 B
Bash
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
|