3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/parsing/flex/default.nix

39 lines
953 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-${version}";
2017-07-29 18:14:47 +01:00
version = "2.6.4";
2014-01-07 13:24:59 +00:00
src = fetchurl {
url = "https://github.com/westes/flex/releases/download/v${version}/flex-${version}.tar.gz";
2017-07-29 18:14:47 +01:00
sha256 = "15g9bv236nzi665p9ggqjlfn4dwck5835vf0bbw2cz7h5c1swyp8";
};
2014-01-07 13:24:59 +00:00
buildInputs = [ bison ];
propagatedNativeBuildInputs = [ m4 ];
2015-06-04 18:26:30 +01: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-24 02:42:08 +01:00
homepage = https://github.com/westes/flex;
description = "A fast lexical analyser generator";
platforms = stdenv.lib.platforms.unix;
};
}