mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
ae6d2796bc
The default release channel (stable/unstable) and the default build (wine32/wine64/wineWow) can be customized via the "wine" key in config
16 lines
487 B
Nix
16 lines
487 B
Nix
## Configuration:
|
|
# Control you default wine config in nixpkgs-config:
|
|
# wine = {
|
|
# release = "stable"; # "stable", "unstable"
|
|
# build = "wineWow"; # "wine32", "wine64", "wineWow"
|
|
# };
|
|
# Make additional configurations on demand:
|
|
# wine.overrideConfig { build = "wine32"; };
|
|
{ lib, system, callPackage,
|
|
wineRelease ? "stable",
|
|
wineBuild ? (if system == "x86_64-linux" then "wineWow" else "wine32") }:
|
|
|
|
lib.getAttr wineBuild (callPackage ./packages.nix {
|
|
inherit wineRelease;
|
|
})
|