* Added the GNU findutils to the stdenv.
svn path=/nixpkgs/trunk/; revision=341
This commit is contained in:
parent
3467585b1b
commit
33555f6a4d
|
@ -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
|
|
@ -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"))
|
||||||
|
]
|
||||||
|
)
|
|
@ -8,6 +8,7 @@ Package(
|
||||||
|
|
||||||
, ("tools",
|
, ("tools",
|
||||||
[ IncludeFix("coreutils/coreutils.fix")
|
[ IncludeFix("coreutils/coreutils.fix")
|
||||||
|
, IncludeFix("findutils/findutils.fix")
|
||||||
, IncludeFix("gnused/gnused.fix")
|
, IncludeFix("gnused/gnused.fix")
|
||||||
, IncludeFix("gnugrep/gnugrep.fix")
|
, IncludeFix("gnugrep/gnugrep.fix")
|
||||||
, IncludeFix("gawk/gawk.fix")
|
, IncludeFix("gawk/gawk.fix")
|
||||||
|
|
Loading…
Reference in New Issue