454707da23
svn path=/nixpkgs/trunk/; revision=3660
11 lines
255 B
Nix
11 lines
255 B
Nix
{stdenv, fetchurl, bison, flex}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "modutils-2.4.25";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/modutils-2.4.25.tar.bz2;
|
|
md5 = "2c0cca3ef6330a187c6ef4fe41ecaa4d";
|
|
};
|
|
buildInputs = [bison flex];
|
|
}
|