2004-01-30 11:10:06 +01:00
|
|
|
# !!! this should be moved to default.nix eventually (but I delay
|
|
|
|
# doing that since it would cause a rebuild of lots of stuff).
|
|
|
|
|
2004-01-30 18:23:34 +01:00
|
|
|
{stdenv, fetchurl, yacc, m4}:
|
2004-01-30 11:10:06 +01:00
|
|
|
|
2004-04-01 16:24:30 +02:00
|
|
|
assert yacc != null && m4 != null;
|
2004-01-30 11:10:06 +01:00
|
|
|
|
2004-04-01 16:24:30 +02:00
|
|
|
stdenv.mkDerivation {
|
2004-01-30 11:10:06 +01:00
|
|
|
name = "flex-2.5.31";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://heanet.dl.sourceforge.net/sourceforge/lex/flex-2.5.31.tar.bz2;
|
|
|
|
md5 = "363dcc4afc917dc51306eb9d3de0152f";
|
|
|
|
};
|
2004-04-01 16:24:30 +02:00
|
|
|
buildInputs = [yacc];
|
|
|
|
propagatedBuildInputs = [m4];
|
2004-01-30 11:10:06 +01:00
|
|
|
}
|