summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/flex/flex-2.5.35.nix
blob: 21180e7d185ef256b7761509ff3a91df34cabbca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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];
  propagatedNativeBuildInputs = [m4];

  crossAttrs = {
    preConfigure = ''
      export ac_cv_func_malloc_0_nonnull=yes
      export ac_cv_func_realloc_0_nonnull=yes
    '';
  };

  meta = {
    description = "A fast lexical analyser generator";
  };
}