* Remove findutils-wrapper (obsolete).

* Remove some unnecessary / inappropriate lowPrios.

svn path=/nixpkgs/trunk/; revision=22825
This commit is contained in:
Eelco Dolstra
2010-07-30 12:31:10 +00:00
parent 35b4ccadba
commit 9375dad95a
3 changed files with 4 additions and 30 deletions

View File

@@ -1,12 +0,0 @@
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"

View File

@@ -1,10 +0,0 @@
{stdenv, findutils}:
stdenv.mkDerivation {
name = findutils.name;
builder = ./builder.sh;
makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;
inherit findutils;
}