* Added the GNU findutils to the stdenv.

svn path=/nixpkgs/trunk/; revision=341
This commit is contained in:
Eelco Dolstra 2003-08-22 15:06:24 +00:00
parent 3467585b1b
commit 33555f6a4d
3 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,9 @@
#! /bin/sh
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd findutils-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1

View file

@ -0,0 +1,13 @@
Package(
[ ("name", "findutils-4.1.20")
, ("build", Relative("findutils/findutils-build.sh"))
, ("src", Call(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "ftp://alpha.gnu.org/pub/gnu/findutils/findutils-4.1.20.tar.gz")
, ("md5", "e90ce7222daadeb8616b8db461e17cbc")
]))
, ("stdenv", IncludeFix("stdenv-linux/stdenv-nativetools.fix"))
]
)

View file

@ -8,6 +8,7 @@ Package(
, ("tools",
[ IncludeFix("coreutils/coreutils.fix")
, IncludeFix("findutils/findutils.fix")
, IncludeFix("gnused/gnused.fix")
, IncludeFix("gnugrep/gnugrep.fix")
, IncludeFix("gawk/gawk.fix")