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

38 lines
917 B
Nix
Raw Normal View History

2014-01-07 05:24:59 -08:00
{ stdenv, fetchurl, bison, m4 }:
2015-11-18 17:49:54 -08:00
stdenv.mkDerivation rec {
2016-09-23 18:42:08 -07:00
name = "flex-2.6.1";
2014-01-07 05:24:59 -08:00
src = fetchurl {
2016-09-23 18:42:08 -07:00
url = "https://github.com/westes/flex/releases/download/v2.6.1/flex-2.6.1.tar.gz";
sha256 = "0fy14c35yz2m1n1m4f02by3501fn0cca37zn7jp8lpp4b3kgjhrw";
};
2014-01-07 05:24:59 -08:00
buildInputs = [ bison ];
propagatedNativeBuildInputs = [ m4 ];
2015-06-04 10:26:30 -07: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 = {
2016-09-23 18:42:08 -07:00
homepage = https://github.com/westes/flex;
description = "A fast lexical analyser generator";
platforms = stdenv.lib.platforms.unix;
};
}