diff options
author | Martin Weinelt <mweinelt@users.noreply.github.com> | 2021-04-24 17:59:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-24 17:59:07 +0200 |
commit | b7e08de1e9e9a3e484fd8952151c59571e5c479c (patch) | |
tree | 6cb75b237c6418c8f333ad753145eab912ca8485 | |
parent | 192ae8f46a259249e7baf54aed8233fa5f519e6b (diff) | |
parent | efa5a31633a93bb3f12b6c0499ad1bbb28766850 (diff) |
Merge pull request #119181 from SFrijters/wine-6.6
-rw-r--r-- | pkgs/misc/emulators/wine/sources.nix | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/pkgs/misc/emulators/wine/sources.nix b/pkgs/misc/emulators/wine/sources.nix index 7f02ead3e025e..0fe4e4da92d79 100644 --- a/pkgs/misc/emulators/wine/sources.nix +++ b/pkgs/misc/emulators/wine/sources.nix @@ -44,10 +44,17 @@ in rec { unstable = fetchurl rec { # NOTE: Don't forget to change the SHA256 for staging as well. - version = "6.5"; + version = "6.7"; url = "https://dl.winehq.org/wine/source/6.x/wine-${version}.tar.xz"; - sha256 = "sha256-BgD9IIwGkl1mNNKfVDu6CmQ2HDTpvXYJwvDiCWEK00c="; - inherit (stable) mono gecko32 gecko64; + sha256 = "sha256-wwUUt3YdRhFRSuAhyx41QSjXfv9UooPxQB7nAid7vqQ="; + inherit (stable) gecko32 gecko64; + + ## see http://wiki.winehq.org/Mono + mono = fetchurl rec { + version = "6.1.1"; + url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi"; + sha256 = "sha256-rDsUvq/eNLhIIofllwABE9wGqRXzLJ/QbHfrgZB544s="; + }; patches = [ # Also look for root certificates at $NIX_SSL_CERT_FILE @@ -58,7 +65,7 @@ in rec { staging = fetchFromGitHub rec { # https://github.com/wine-staging/wine-staging/releases inherit (unstable) version; - sha256 = "sha256-u6wDavrFirN1e0fFra4ui3i4PnJF0gcENYoIyNwhIYc="; + sha256 = "sha256-fWriizSk2+U7Mpn6w/Dlrevd4vc5MnlSWSGxQDf2p+M="; owner = "wine-staging"; repo = "wine-staging"; rev = "v${version}"; |