mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
c055bf8adf
- add symlinks to find and xargs - set LOCATE_PATH for locate svn path=/nixpkgs/trunk/; revision=4544
12 lines
325 B
Bash
12 lines
325 B
Bash
source $stdenv/setup
|
|
source $makeWrapper
|
|
|
|
makeWrapper "$findutils/bin/locate" "$out/bin/locate" \
|
|
--set LOCATE_PATH /var/locatedb
|
|
|
|
makeWrapper "$findutils/bin/updatedb" "$out/bin/updatedb" \
|
|
--set LOCATE_DB /var/locatedb
|
|
|
|
makeWrapper "$findutils/bin/find" "$out/bin/find"
|
|
|
|
makeWrapper "$findutils/bin/xargs" "$out/bin/xargs"
|