Skip to content

Instantly share code, notes, and snippets.

@sheenobu
Created December 21, 2016 06:55
Show Gist options
  • Save sheenobu/f2de4e6574a7953f21af73e9f6f52346 to your computer and use it in GitHub Desktop.
Save sheenobu/f2de4e6574a7953f21af73e9f6f52346 to your computer and use it in GitHub Desktop.
{
wine = {
release = "staging"; # "stable", "unstable", "staging"
build = "wineWow"; # "wine32", "wine64", "wineWow"
pulseaudioSupport = true;
};
packageOverrides = pkgs: {
wine = pkgs.stdenv.lib.overrideDerivation pkgs.wine (oldAttrs : {
wineBuild = "wineWow";
wineRelease = "staging";
pulseaudioSupport=true;
configureFlags = "--enable-win64 --with-alsa --with-pulse";
});
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment