2014-01-07 05:24:59 -08:00
|
|
|
{ stdenv, fetchurl, bison, m4 }:
|
2008-03-20 02:50:15 -07:00
|
|
|
|
2015-11-18 17:49:54 -08:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "flex-2.6.0";
|
2014-01-07 05:24:59 -08:00
|
|
|
|
2008-03-20 02:50:15 -07:00
|
|
|
src = fetchurl {
|
2015-11-18 17:49:54 -08:00
|
|
|
url = "mirror://sourceforge/flex/${name}.tar.bz2";
|
|
|
|
sha256 = "1sdqx63yadindzafrq1w31ajblf9gl1c301g068s20s7bbpi3ri4";
|
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 = {
|
2015-12-23 02:57:34 -08:00
|
|
|
|
|
|
|
# disable tests which can't run on build machine
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.in --replace "tests" " ";
|
|
|
|
'';
|
|
|
|
|
2011-11-04 14:31:07 -07:00
|
|
|
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";
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-03-20 02:50:15 -07:00
|
|
|
};
|
|
|
|
}
|