2004-09-27 23:50:58 +04:00
|
|
|
{stdenv, fetchurl, perl, m4, gcc}:
|
2004-02-13 17:42:28 +03:00
|
|
|
|
2004-09-19 14:34:01 +04:00
|
|
|
assert perl != null && m4 != null;
|
2004-02-13 17:42:28 +03:00
|
|
|
|
2004-03-29 21:23:01 +04:00
|
|
|
stdenv.mkDerivation {
|
2004-12-09 22:48:40 +03:00
|
|
|
name = "uml-2.4.27-1";
|
2004-02-13 17:42:28 +03:00
|
|
|
builder = ./builder.sh;
|
2004-04-02 00:12:54 +04:00
|
|
|
src = fetchurl {
|
2005-08-22 12:39:27 +04:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/linux-2.4.27.tar.bz2;
|
2004-12-09 22:48:40 +03:00
|
|
|
md5 = "59a2e6fde1d110e2ffa20351ac8b4d9e";
|
2004-02-13 17:42:28 +03:00
|
|
|
};
|
2004-04-02 00:12:54 +04:00
|
|
|
umlPatch = fetchurl {
|
2005-08-22 12:39:27 +04:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/uml-patch-2.4.27-1.bz2;
|
2004-12-09 22:48:40 +03:00
|
|
|
md5 = "63178bbd3a383a1005738f4628ff583e";
|
2004-02-13 17:42:28 +03:00
|
|
|
};
|
2004-07-30 00:20:59 +04:00
|
|
|
noAioPatch = ./no-aio.patch;
|
2004-07-31 21:29:10 +04:00
|
|
|
# hostfsPatch = ./hostfs.patch;
|
|
|
|
# hostfsAccessPatch = ./hostfs-access.patch;
|
2004-02-13 17:42:28 +03:00
|
|
|
config = ./config;
|
2004-09-19 14:34:01 +04:00
|
|
|
buildInputs = [perl m4];
|
2004-09-27 23:50:58 +04:00
|
|
|
NIX_GCC = gcc;
|
2004-02-13 17:42:28 +03:00
|
|
|
}
|