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