wine{Unstable,Staging}: 7.0-rc6 -> 7.0

This commit is contained in:
Stefan Frijters 2022-01-18 23:12:19 +01:00
parent ead5bfe3c8
commit abe5804eff
No known key found for this signature in database
GPG key ID: 7619A6BC6E7DFA6F

View file

@ -42,30 +42,12 @@ in rec {
];
};
unstable = fetchurl rec {
# NOTE: Don't forget to change the SHA256 for staging as well.
version = "7.0-rc6";
url = "https://dl.winehq.org/wine/source/7.0/wine-${version}.tar.xz";
sha256 = "sha256-YxVQgVCLl00kZU8m7bAoeLIIkJZ0jRSg6dfNpFPCe1A=";
inherit (stable) gecko32 gecko64;
## see http://wiki.winehq.org/Mono
mono = fetchurl rec {
version = "7.0.0";
url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi";
sha256 = "sha256-s35vyeWQ5YIkPcJdcqX8wzDDp5cN/cmKeoHSOEW6iQA=";
};
patches = [
# Also look for root certificates at $NIX_SSL_CERT_FILE
./cert-path.patch
];
};
unstable = stable;
staging = fetchFromGitHub rec {
# https://github.com/wine-staging/wine-staging/releases
inherit (unstable) version;
sha256 = "sha256-MNhEaDRu6+eyVDbnHsiBImuUT/TaL2lkegfT3cpodXo=";
sha256 = "sha256-2gBfsutKG0ok2ISnnAUhJit7H2TLPDpuP5gvfMVE44o=";
owner = "wine-staging";
repo = "wine-staging";
rev = "v${version}";