mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
wine: restore old features
This commit is contained in:
parent
a055152963
commit
5bff6fef55
1 changed files with 17 additions and 17 deletions
|
@ -10,26 +10,26 @@
|
|||
wineRelease ? "stable",
|
||||
wineBuild ? (if system == "x86_64-linux" then "wineWow" else "wine32"),
|
||||
libtxc_dxtn_Name ? "libtxc_dxtn_s2tc",
|
||||
pngSupport ? false,
|
||||
jpegSupport ? false,
|
||||
pngSupport ? true,
|
||||
jpegSupport ? true,
|
||||
tiffSupport ? false,
|
||||
gettextSupport ? false,
|
||||
fontconfigSupport ? false,
|
||||
alsaSupport ? false,
|
||||
gettextSupport ? true,
|
||||
fontconfigSupport ? true,
|
||||
alsaSupport ? true,
|
||||
gtkSupport ? false,
|
||||
openglSupport ? false,
|
||||
tlsSupport ? false,
|
||||
openglSupport ? true,
|
||||
tlsSupport ? true,
|
||||
gstreamerSupport ? false,
|
||||
cupsSupport ? false,
|
||||
colorManagementSupport ? false,
|
||||
dbusSupport ? false,
|
||||
mpg123Support ? false,
|
||||
openalSupport ? false,
|
||||
cupsSupport ? true,
|
||||
colorManagementSupport ? true,
|
||||
dbusSupport ? true,
|
||||
mpg123Support ? true,
|
||||
openalSupport ? true,
|
||||
openclSupport ? false,
|
||||
cairoSupport ? false,
|
||||
cairoSupport ? true,
|
||||
odbcSupport ? false,
|
||||
netapiSupport ? false,
|
||||
cursesSupport ? false,
|
||||
cursesSupport ? true,
|
||||
vaSupport ? false,
|
||||
pcapSupport ? false,
|
||||
v4lSupport ? false,
|
||||
|
@ -37,9 +37,9 @@
|
|||
gsmSupport ? false,
|
||||
gphoto2Support ? false,
|
||||
ldapSupport ? false,
|
||||
pulseaudioSupport ? false,
|
||||
xineramaSupport ? false,
|
||||
xmlSupport ? false }:
|
||||
pulseaudioSupport ? true,
|
||||
xineramaSupport ? true,
|
||||
xmlSupport ? true }:
|
||||
|
||||
let wine-build = build: release:
|
||||
lib.getAttr build (callPackage ./packages.nix {
|
||||
|
|
Loading…
Reference in a new issue