mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
wine*: fixup build by using older flex
This commit is contained in:
parent
cf1d3677d3
commit
d442a0ffc0
1 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
{ stdenv, lib, pkgArches,
|
||||
name, version, src, monos, geckos, platforms,
|
||||
pkgconfig, fontforge, makeWrapper, flex, bison,
|
||||
# flex 2.6.3 causes: undefined reference to `yywrap'
|
||||
pkgconfig, fontforge, makeWrapper, flex_2_6_1, bison,
|
||||
supportFlags,
|
||||
buildScript ? null, configureFlags ? ""
|
||||
}:
|
||||
|
@ -16,7 +17,7 @@ stdenv.mkDerivation ((lib.optionalAttrs (! isNull buildScript) {
|
|||
inherit name src configureFlags;
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgconfig fontforge makeWrapper flex bison
|
||||
pkgconfig fontforge makeWrapper flex_2_6_1 bison
|
||||
];
|
||||
|
||||
buildInputs = toBuildInputs pkgArches (with supportFlags; (pkgs:
|
||||
|
|
Loading…
Reference in a new issue