* User-Mode Linux and GNU Patch.

svn path=/nixpkgs/trunk/; revision=779
This commit is contained in:
Eelco Dolstra
2004-02-13 14:42:28 +00:00
8 changed files with 433 additions and 0 deletions
+9
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
+10
View File
@@ -0,0 +1,10 @@
{stdenv, fetchurl}: derivation {
name = "gnupatch-2.5.4";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/patch/patch-2.5.4.tar.gz;
md5 = "ee5ae84d115f051d87fcaaef3b4ae782";
};
stdenv = stdenv;
}