Skip to content

Commit

Permalink
wine: 1.8.6 -> 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bendlas authored and fpletz committed Feb 9, 2017
1 parent 7c435a8 commit ae33b46
Showing 1 changed file with 14 additions and 23 deletions.
37 changes: 14 additions & 23 deletions pkgs/misc/emulators/wine/sources.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,49 +6,40 @@ let fetchurl = args@{url, sha256, ...}:
in rec {

stable = fetchurl rec {
version = "1.8.6";
url = "https://dl.winehq.org/wine/source/1.8/wine-${version}.tar.bz2";
sha256 = "1lq6770pkv3342ss2ih18s2hw6i1srbcfg3mljwalqrvxfb7hydi";
version = "2.0";
url = "https://dl.winehq.org/wine/source/2.0/wine-${version}.tar.bz2";
sha256 = "1ik6q0h3ph3jizmp7bxhf6kcm1pzrdrn2m0yf2x86slv2aigamlp";

## see http://wiki.winehq.org/Gecko
gecko32 = fetchurl rec {
version = "2.40";
version = "2.47";
url = "http://dl.winehq.org/wine/wine-gecko/${version}/wine_gecko-${version}-x86.msi";
sha256 = "00nkaxhb9dwvf53ij0q75fb9fh7pf43hmwx6rripcax56msd2a8s";
sha256 = "0fk4fwb4ym8xn0i5jv5r5y198jbpka24xmxgr8hjv5b3blgkd2iv";
};
gecko64 = fetchurl rec {
version = "2.40";
version = "2.47";
url = "http://dl.winehq.org/wine/wine-gecko/${version}/wine_gecko-${version}-x86_64.msi";
sha256 = "0c4jikfzb4g7fyzp0jcz9fk2rpdl1v8nkif4dxcj28nrwy48kqn3";
sha256 = "0zaagqsji6zaag92fqwlasjs8v9hwjci5c2agn9m7a8fwljylrf5";
};

## see http://wiki.winehq.org/Mono
mono = fetchurl rec {
version = "4.6.3";
version = "4.6.4";
url = "http://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}.msi";
sha256 = "1f98xwgv665zb9cwc5zphcdbffyh3sm26h62hzca6zlcwy5fi0zq";
sha256 = "0lj1rhp9s8aaxd6764mfvnyswwalafaanz80vxg3badrfy0xbdwi";
};
};

unstable = fetchurl rec {
version = "2.0-rc3";
version = "2.0";
url = "https://dl.winehq.org/wine/source/2.0/wine-${version}.tar.bz2";
sha256 = "0sq8li7p30h2a5bbpv27vxpzihr8h890qm78nq21fnh0zflg8x8y";
inherit (stable) mono;
gecko32 = fetchurl rec {
version = "2.47";
url = "http://dl.winehq.org/wine/wine-gecko/${version}/wine_gecko-${version}-x86.msi";
sha256 = "0fk4fwb4ym8xn0i5jv5r5y198jbpka24xmxgr8hjv5b3blgkd2iv";
};
gecko64 = fetchurl rec {
version = "2.47";
url = "http://dl.winehq.org/wine/wine-gecko/${version}/wine_gecko-${version}-x86_64.msi";
sha256 = "0zaagqsji6zaag92fqwlasjs8v9hwjci5c2agn9m7a8fwljylrf5";
};
sha256 = "1ik6q0h3ph3jizmp7bxhf6kcm1pzrdrn2m0yf2x86slv2aigamlp";
inherit (stable) mono gecko32 gecko64;
};

staging = fetchFromGitHub rec {
inherit (unstable) version;
sha256 = "1nk8s54nrlws0d8wpyj1vv2z0l2jansn990xw73v15wzwc3j9p6l";
sha256 = "02jrdm49zlc0f357m0z65pilmg4lxh16va32ll3p4y8vr13nwawk";
owner = "wine-compholio";
repo = "wine-staging";
rev = "v${version}";
Expand Down

0 comments on commit ae33b46

Please sign in to comment.