wine: 3.0 -> 3.3

This commit is contained in:
Herwig Hochleitner 2018-03-03 17:50:07 +01:00
parent 54a02314ad
commit 039428d3b2

View File

@ -39,19 +39,19 @@ in rec {
unstable = fetchurl rec { unstable = fetchurl rec {
# NOTE: Don't forget to change the SHA256 for staging as well. # NOTE: Don't forget to change the SHA256 for staging as well.
version = "3.0"; version = "3.3";
url = "https://dl.winehq.org/wine/source/3.0/wine-${version}.tar.xz"; url = "https://dl.winehq.org/wine/source/3.x/wine-${version}.tar.xz";
sha256 = "1v7vq9iinkscbq6wg85fb0d2137660fg2nk5iabxkl2wr850asil"; sha256 = "0cx31jsll7mxd9r7v0vpahajqwb6da6cpwybv06l5ydkgfrbv505";
inherit (stable) mono gecko32 gecko64; inherit (stable) mono gecko32 gecko64;
}; };
staging = fetchFromGitHub rec { staging = fetchFromGitHub rec {
# https://github.com/wine-compholio/wine-staging/releases # https://github.com/wine-compholio/wine-staging/releases
inherit (unstable) version; inherit (unstable) version;
# FIXME update winestaging sources, when 3.0 is released # FIXME update winestaging sources, when 3.3 is released
# FIXME then revert the staging derivation in ./default.nix # FIXME then revert the staging derivation in ./default.nix
sha256 = "1qznp4kgss4mhk1vvr91jmszsi47xg312r64l76jkgwijhypmvb7"; sha256 = "0000000000000000000000000000000000000000000000000000000000000000";
owner = "wine-compholio"; owner = "wine-staging";
repo = "wine-staging"; repo = "wine-staging";
rev = "v${version}"; rev = "v${version}";
}; };