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