mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Newer flex.
svn path=/nixpkgs/trunk/; revision=11213
This commit is contained in:
parent
ae475a72bf
commit
a3ea4c135b
19
pkgs/development/tools/parsing/flex/flex-2.5.35.nix
Normal file
19
pkgs/development/tools/parsing/flex/flex-2.5.35.nix
Normal 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.35";
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/flex/flex-2.5.35.tar.bz2;
|
||||
sha256 = "0ysff249mwhq0053bw3hxh58djc0gy7vjan2z1krrf9n5d5vvv0b";
|
||||
};
|
||||
buildInputs = [yacc];
|
||||
propagatedBuildInputs = [m4];
|
||||
|
||||
meta = {
|
||||
description = "A fast lexical analyser generator";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user