2014-01-07 13:24:59 +00:00
|
|
|
{ stdenv, fetchurl, bison, m4 }:
|
2008-03-20 09:50:15 +00:00
|
|
|
|
2015-11-19 01:49:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "flex-2.6.0";
|
2014-01-07 13:24:59 +00:00
|
|
|
|
2008-03-20 09:50:15 +00:00
|
|
|
src = fetchurl {
|
2015-11-19 01:49:54 +00:00
|
|
|
url = "mirror://sourceforge/flex/${name}.tar.bz2";
|
|
|
|
sha256 = "1sdqx63yadindzafrq1w31ajblf9gl1c301g068s20s7bbpi3ri4";
|
2008-03-20 09:50:15 +00:00
|
|
|
};
|
2014-01-07 13:24:59 +00:00
|
|
|
|
|
|
|
buildInputs = [ bison ];
|
|
|
|
|
|
|
|
propagatedNativeBuildInputs = [ m4 ];
|
2008-03-20 09:50:15 +00:00
|
|
|
|
2015-06-04 18:26:30 +01:00
|
|
|
postConfigure = stdenv.lib.optionalString (stdenv.isDarwin || stdenv.isCygwin) ''
|
2014-04-15 11:04:27 +01:00
|
|
|
sed -i Makefile -e 's/-no-undefined//;'
|
|
|
|
'';
|
|
|
|
|
2011-11-04 21:31:07 +00:00
|
|
|
crossAttrs = {
|
2015-12-23 10:57:34 +00:00
|
|
|
|
|
|
|
# disable tests which can't run on build machine
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.in --replace "tests" " ";
|
|
|
|
'';
|
|
|
|
|
2011-11-04 21:31:07 +00:00
|
|
|
preConfigure = ''
|
|
|
|
export ac_cv_func_malloc_0_nonnull=yes
|
|
|
|
export ac_cv_func_realloc_0_nonnull=yes
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2008-03-20 09:50:15 +00:00
|
|
|
meta = {
|
2014-01-07 13:24:59 +00:00
|
|
|
homepage = http://flex.sourceforge.net/;
|
2008-03-20 09:50:15 +00:00
|
|
|
description = "A fast lexical analyser generator";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-03-20 09:50:15 +00:00
|
|
|
};
|
|
|
|
}
|