2004-12-16 17:34:03 +01:00
|
|
|
{stdenv, fetchurl, bison, flex}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "modutils-2.4.25";
|
|
|
|
src = fetchurl {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/modutils-2.4.25.tar.bz2;
|
2004-12-16 17:34:03 +01:00
|
|
|
md5 = "2c0cca3ef6330a187c6ef4fe41ecaa4d";
|
|
|
|
};
|
|
|
|
buildInputs = [bison flex];
|
|
|
|
}
|