uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
60
pkgs/top-level/wine-packages.nix
Normal file
60
pkgs/top-level/wine-packages.nix
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
{ stdenv, config, callPackage, wineBuild }:
|
||||
|
||||
rec {
|
||||
fonts = callPackage ../applications/emulators/wine/fonts.nix {};
|
||||
minimal = callPackage ../applications/emulators/wine {
|
||||
wineRelease = config.wine.release or "stable";
|
||||
inherit wineBuild;
|
||||
};
|
||||
|
||||
base = minimal.override {
|
||||
gettextSupport = true;
|
||||
fontconfigSupport = stdenv.isLinux;
|
||||
alsaSupport = stdenv.isLinux;
|
||||
openglSupport = true;
|
||||
# Works on Darwin but disabled by default to prevent Hydra build failures due to MoltenVK.
|
||||
vulkanSupport = stdenv.isLinux;
|
||||
tlsSupport = true;
|
||||
cupsSupport = true;
|
||||
dbusSupport = stdenv.isLinux;
|
||||
cairoSupport = stdenv.isLinux;
|
||||
cursesSupport = true;
|
||||
saneSupport = stdenv.isLinux;
|
||||
pulseaudioSupport = config.pulseaudio or stdenv.isLinux;
|
||||
udevSupport = stdenv.isLinux;
|
||||
xineramaSupport = stdenv.isLinux;
|
||||
sdlSupport = true;
|
||||
mingwSupport = true;
|
||||
usbSupport = true;
|
||||
};
|
||||
|
||||
full = base.override {
|
||||
gtkSupport = stdenv.isLinux;
|
||||
gstreamerSupport = true;
|
||||
openalSupport = true;
|
||||
openclSupport = true;
|
||||
odbcSupport = true;
|
||||
netapiSupport = stdenv.isLinux;
|
||||
vaSupport = stdenv.isLinux;
|
||||
pcapSupport = true;
|
||||
v4lSupport = stdenv.isLinux;
|
||||
gphoto2Support = true;
|
||||
krb5Support = true;
|
||||
ldapSupport = true;
|
||||
# Works on Darwin but disabled by default to prevent Hydra build failures due to MoltenVK.
|
||||
vkd3dSupport = stdenv.isLinux;
|
||||
embedInstallers = true;
|
||||
};
|
||||
|
||||
stable = base.override { wineRelease = "stable"; };
|
||||
stableFull = full.override { wineRelease = "stable"; };
|
||||
|
||||
unstable = base.override { wineRelease = "unstable"; };
|
||||
unstableFull = full.override { wineRelease = "unstable"; };
|
||||
|
||||
staging = base.override { wineRelease = "staging"; };
|
||||
stagingFull = full.override { wineRelease = "staging"; };
|
||||
|
||||
wayland = base.override { wineRelease = "wayland"; };
|
||||
waylandFull = full.override { wineRelease = "wayland"; };
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue