mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
60ac36f9c5
svn path=/nixpkgs/branches/stdenv-updates/; revision=13790
15 lines
351 B
Bash
15 lines
351 B
Bash
source $stdenv/setup
|
|
|
|
ensureDir $out/bin
|
|
cat > $out/bin/nuke-refs <<EOF
|
|
#! $SHELL -e
|
|
for i in \$*; do
|
|
if ! test -L \$i; then
|
|
cat \$i | sed "s|/nix/store/[a-z0-9]*-|/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-|g" > \$i.tmp
|
|
if test -x \$i; then chmod +x \$i.tmp; fi
|
|
mv \$i.tmp \$i
|
|
fi
|
|
done
|
|
EOF
|
|
chmod +x $out/bin/nuke-refs
|