2014-01-07 14:24:59 +01:00
|
|
|
{ stdenv, fetchurl, bison, m4 }:
|
2008-03-20 10:50:15 +01:00
|
|
|
|
2015-11-19 02:49:54 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "flex-2.6.0";
|
2014-01-07 14:24:59 +01:00
|
|
|
|
2008-03-20 10:50:15 +01:00
|
|
|
src = fetchurl {
|
2015-11-19 02:49:54 +01:00
|
|
|
url = "mirror://sourceforge/flex/${name}.tar.bz2";
|
|
|
|
sha256 = "1sdqx63yadindzafrq1w31ajblf9gl1c301g068s20s7bbpi3ri4";
|
2008-03-20 10:50:15 +01:00
|
|
|
};
|
2014-01-07 14:24:59 +01:00
|
|
|
|
|
|
|
buildInputs = [ bison ];
|
|
|
|
|
|
|
|
propagatedNativeBuildInputs = [ m4 ];
|
2008-03-20 10:50:15 +01:00
|
|
|
|
2015-06-04 19:26:30 +02:00
|
|
|
postConfigure = stdenv.lib.optionalString (stdenv.isDarwin || stdenv.isCygwin) ''
|
2014-04-15 12:04:27 +02:00
|
|
|
sed -i Makefile -e 's/-no-undefined//;'
|
|
|
|
'';
|
|
|
|
|
2011-11-04 22:31:07 +01:00
|
|
|
crossAttrs = {
|
|
|
|
preConfigure = ''
|
|
|
|
export ac_cv_func_malloc_0_nonnull=yes
|
|
|
|
export ac_cv_func_realloc_0_nonnull=yes
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2008-03-20 10:50:15 +01:00
|
|
|
meta = {
|
2014-01-07 14:24:59 +01:00
|
|
|
homepage = http://flex.sourceforge.net/;
|
2008-03-20 10:50:15 +01:00
|
|
|
description = "A fast lexical analyser generator";
|
|
|
|
};
|
|
|
|
}
|