forked from mirrors/nixpkgs
wine: use current flex
This commit is contained in:
parent
12d9443a66
commit
c73ed9625b
|
@ -1,7 +1,6 @@
|
||||||
{ stdenv, lib, pkgArches,
|
{ stdenv, lib, pkgArches,
|
||||||
name, version, src, monos, geckos, platforms,
|
name, version, src, monos, geckos, platforms,
|
||||||
# flex 2.6.3 causes: undefined reference to `yywrap'
|
pkgconfig, fontforge, makeWrapper, flex, bison,
|
||||||
pkgconfig, fontforge, makeWrapper, flex_2_6_1, bison,
|
|
||||||
supportFlags,
|
supportFlags,
|
||||||
buildScript ? null, configureFlags ? []
|
buildScript ? null, configureFlags ? []
|
||||||
}:
|
}:
|
||||||
|
@ -14,7 +13,7 @@ stdenv.mkDerivation ((lib.optionalAttrs (! isNull buildScript) {
|
||||||
inherit name src configureFlags;
|
inherit name src configureFlags;
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig fontforge makeWrapper flex_2_6_1 bison
|
pkgconfig fontforge makeWrapper flex bison
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = toBuildInputs pkgArches (with supportFlags; (pkgs:
|
buildInputs = toBuildInputs pkgArches (with supportFlags; (pkgs:
|
||||||
|
|
Loading…
Reference in a new issue