2017-01-06 15:11:47 +00:00
|
|
|
{ stdenv, fetchurl, bison, m4 }:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2017-01-06 15:11:47 +00:00
|
|
|
name = "flex-2.6.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/westes/flex/releases/download/v2.6.1/flex-2.6.1.tar.gz";
|
|
|
|
sha256 = "0fy14c35yz2m1n1m4f02by3501fn0cca37zn7jp8lpp4b3kgjhrw";
|
|
|
|
};
|
|
|
|
|
2018-08-08 22:16:13 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs tests
|
|
|
|
'' + stdenv.lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
|
|
|
substituteInPlace Makefile.in --replace "tests" " ";
|
|
|
|
'';
|
|
|
|
|
2017-01-06 15:11:47 +00:00
|
|
|
buildInputs = [ bison ];
|
|
|
|
|
2017-08-14 21:39:03 +01:00
|
|
|
propagatedBuildInputs = [ m4 ];
|
2017-01-06 15:11:47 +00:00
|
|
|
|
2018-07-23 22:35:23 +01:00
|
|
|
preConfigure = stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
"ac_cv_func_malloc_0_nonnull=yes"
|
|
|
|
"ac_cv_func_realloc_0_nonnull=yes"
|
|
|
|
];
|
|
|
|
|
2017-01-06 15:11:47 +00:00
|
|
|
postConfigure = stdenv.lib.optionalString (stdenv.isDarwin || stdenv.isCygwin) ''
|
|
|
|
sed -i Makefile -e 's/-no-undefined//;'
|
|
|
|
'';
|
|
|
|
|
2018-08-16 20:51:07 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/westes/flex";
|
2017-01-06 15:11:47 +00:00
|
|
|
description = "A fast lexical analyser generator";
|
2018-08-16 20:51:07 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
2017-01-06 15:11:47 +00:00
|
|
|
};
|
|
|
|
}
|