Flex 2.5.34.

svn path=/nixpkgs/trunk/; revision=10713
This commit is contained in:
Ludovic Courtès 2008-02-16 19:12:55 +00:00
parent a2339db1b1
commit 3e7da32582
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# This should be moved to default.nix eventually (?)
{stdenv, fetchurl, yacc, m4}:
assert yacc != null && m4 != null;
stdenv.mkDerivation {
name = "flex-2.5.34";
src = fetchurl {
url = mirror://sourceforge/flex/flex-2.5.34.tar.bz2;
sha256 = "1c8e64f32508841b0441ddfb139c4cfd25fee3728cadb63f5f351c6eb9b224a6";
};
buildInputs = [yacc];
propagatedBuildInputs = [m4];
meta = {
description = "A fast lexical analyser generator";
};
}

View File

@ -1826,6 +1826,10 @@ rec {
flex = flex254a;
flex2534 = import ../development/tools/parsing/flex/flex-2.5.34.nix {
inherit fetchurl stdenv yacc m4;
};
flex2533 = import ../development/tools/parsing/flex/flex-2.5.33.nix {
inherit fetchurl stdenv yacc m4;
};