mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 09:03:42 +00:00
7 lines
151 B
Bash
7 lines
151 B
Bash
source $stdenv/setup
|
|
|
|
ensureDir $out/bin
|
|
for i in ar as c++filt gprof ld nm nmedit ranlib size strings strip; do
|
|
ln -s /usr/bin/$i $out/bin/
|
|
done
|