nixpkgs/pkgs/development/tools/parsing/flex/default.nix

37 lines
840 B
Nix
Raw Normal View History

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