nixpkgs-suyu/pkgs/misc/emulators/wine/sources.nix

85 lines
2.9 KiB
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {} }:
## we default to importing <nixpkgs> here, so that you can use
## a simple shell command to insert new sha256's into this file
## e.g. with emacs C-u M-x shell-command
##
## nix-prefetch-url sources.nix -A {stable{,.mono,.gecko64,.gecko32}, unstable, staging, winetricks}
# here we wrap fetchurl and fetchFromGitHub, in order to be able to pass additional args around it
let fetchurl = args@{url, sha256, ...}:
pkgs.fetchurl { inherit url sha256; } // args;
fetchFromGitHub = args@{owner, repo, rev, sha256, ...}:
pkgs.fetchFromGitHub { inherit owner repo rev sha256; } // args;
in rec {
stable = fetchurl rec {
2021-06-12 18:27:07 +02:00
version = "6.0.1";
2021-02-05 13:46:40 +01:00
url = "https://dl.winehq.org/wine/source/6.0/wine-${version}.tar.xz";
2021-06-12 18:27:07 +02:00
sha256 = "sha256-Ogmh7Jyh6h1PcpWY14JxeXP09kRYZn+7dX0SLzoB2ko=";
## see http://wiki.winehq.org/Gecko
gecko32 = fetchurl rec {
2020-01-20 08:29:21 +01:00
version = "2.47.1";
url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86.msi";
sha256 = "0ld03pjm65xkpgqkvfsmk6h9krjsqbgxw4b8rvl2fj20j8l0w2zh";
};
gecko64 = fetchurl rec {
2020-01-20 08:29:21 +01:00
version = "2.47.1";
url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86_64.msi";
sha256 = "0jj7azmpy07319238g52a8m4nkdwj9g010i355ykxnl8m5wjwcb9";
};
2017-01-30 02:31:25 +01:00
## see http://wiki.winehq.org/Mono
mono = fetchurl rec {
2020-10-29 22:29:57 +01:00
version = "5.1.1";
url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi";
sha256 = "09wjrfxbw0072iv6d2vqnkc3y7dzj15vp8mv4ay44n1qp5ji4m3l";
};
patches = [
# Also look for root certificates at $NIX_SSL_CERT_FILE
2021-02-05 13:46:40 +01:00
./cert-path.patch
];
};
unstable = fetchurl rec {
# NOTE: Don't forget to change the SHA256 for staging as well.
2021-09-12 09:55:52 +02:00
version = "6.17";
2021-02-05 13:47:29 +01:00
url = "https://dl.winehq.org/wine/source/6.x/wine-${version}.tar.xz";
2021-09-12 09:55:52 +02:00
sha256 = "sha256-nbHyQ12AJiw3dzF98HWFWu6j5qUst3xjDsGysfuUjwg=";
2021-04-11 20:50:53 +02:00
inherit (stable) gecko32 gecko64;
## see http://wiki.winehq.org/Mono
mono = fetchurl rec {
2021-08-02 21:19:43 +02:00
version = "6.3.0";
2021-04-11 20:50:53 +02:00
url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi";
2021-08-02 21:19:43 +02:00
sha256 = "sha256-pfAtMqAoNpKkpiX1Qc+7tFGIMShHTFyANiOFMXzQmfA=";
2021-04-11 20:50:53 +02:00
};
patches = [
# Also look for root certificates at $NIX_SSL_CERT_FILE
./cert-path.patch
];
};
staging = fetchFromGitHub rec {
2018-05-08 19:27:20 +02:00
# https://github.com/wine-staging/wine-staging/releases
inherit (unstable) version;
2021-09-12 09:55:52 +02:00
sha256 = "sha256-rR5m6D8M3vTXXIHzsF8+o2G5rlRS2HLfCHoatbJwlrQ=";
2018-03-03 17:50:07 +01:00
owner = "wine-staging";
repo = "wine-staging";
2021-07-26 09:22:55 +02:00
rev = "v${version}";
disabledPatchsets = [ ];
};
winetricks = fetchFromGitHub rec {
# https://github.com/Winetricks/winetricks/releases
2021-08-28 14:56:27 +02:00
version = "20210825";
sha256 = "sha256-exMhj3dS8uXCEgOaWbftaq94mBOmtZIXsXb9xNX5ha8=";
owner = "Winetricks";
repo = "winetricks";
rev = version;
};
}