mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 08:34:04 +00:00
7 lines
167 B
Bash
7 lines
167 B
Bash
source $stdenv/setup
|
|
|
|
mkdir -p $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
|