mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
* Added the GNU findutils to the stdenv.
svn path=/nixpkgs/trunk/; revision=341
This commit is contained in:
parent
3467585b1b
commit
33555f6a4d
9
pkgs/findutils/findutils-build.sh
Executable file
9
pkgs/findutils/findutils-build.sh
Executable 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
|
13
pkgs/findutils/findutils.fix
Normal file
13
pkgs/findutils/findutils.fix
Normal 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"))
|
||||
]
|
||||
)
|
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user