* GNU Patch.

svn path=/nixpkgs/trunk/; revision=388
This commit is contained in:
Eelco Dolstra 2003-09-11 20:17:17 +00:00
parent 714a65d9d4
commit 34dfe18660
2 changed files with 22 additions and 0 deletions

View file

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

View file

@ -0,0 +1,13 @@
Package(
[ ("name", "gnupatch-2.5.4")
, ("build", Relative("gnupatch/gnupatch-build.sh"))
, ("src", Call(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "ftp://ftp.nluug.nl/pub/gnu/patch/patch-2.5.4.tar.gz")
, ("md5", "ee5ae84d115f051d87fcaaef3b4ae782")
]))
, ("stdenv", IncludeFix("stdenv/stdenv.fix"))
]
)