about summary refs log tree commit diff
path: root/pkgs/misc/uml/default.nix
blob: 48e869251325674f6a6ec4006f3ca1d8108a6185 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{stdenv, fetchurl, perl, m4, gcc}:

assert perl != null && m4 != null;

stdenv.mkDerivation {
  name = "uml-2.4.27-1";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/linux-2.4.27.tar.bz2;
    md5 = "59a2e6fde1d110e2ffa20351ac8b4d9e";
  };
  umlPatch = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/uml-patch-2.4.27-1.bz2;
    md5 = "63178bbd3a383a1005738f4628ff583e";
  };
  noAioPatch = ./no-aio.patch;
#  hostfsPatch = ./hostfs.patch;
#  hostfsAccessPatch = ./hostfs-access.patch;
  config = ./config;
  buildInputs = [perl m4];
  NIX_GCC = gcc;
}