about summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/flex/flex-new.nix
blob: 6da54271823b2a2a806255262b7e6947ccd88116 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# !!! this should be moved to default.nix eventually (but I delay
# doing that since it would cause a rebuild of lots of stuff).

{stdenv, fetchurl, yacc, m4}:

assert yacc != null;

derivation {
  name = "flex-2.5.31";
  system = stdenv.system;
  builder = ./builder-new.sh;
  src = fetchurl {
    url = http://heanet.dl.sourceforge.net/sourceforge/lex/flex-2.5.31.tar.bz2;
    md5 = "363dcc4afc917dc51306eb9d3de0152f";
  };
  stdenv = stdenv;
  yacc = yacc;
  m4 = m4;
}