2016-02-02 03:55:46 +00:00
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
2017-11-09 18:57:49 +00:00
|
|
|
## 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
|
2016-02-02 03:55:46 +00:00
|
|
|
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;
|
2022-01-03 04:10:16 +00:00
|
|
|
fetchFromGitLab = args@{domain, owner, repo, rev, sha256, ...}:
|
|
|
|
pkgs.fetchFromGitLab { inherit domain owner repo rev sha256; } // args;
|
2016-02-02 03:55:46 +00:00
|
|
|
in rec {
|
|
|
|
|
|
|
|
stable = fetchurl rec {
|
2022-01-18 22:10:20 +00:00
|
|
|
version = "7.0";
|
|
|
|
url = "https://dl.winehq.org/wine/source/7.0/wine-${version}.tar.xz";
|
|
|
|
sha256 = "sha256-W0PifVwIXLGPlzlORhgDENXu98HZHGiVQyo4ibLeCGs=";
|
2016-02-02 03:55:46 +00:00
|
|
|
|
|
|
|
## see http://wiki.winehq.org/Gecko
|
|
|
|
gecko32 = fetchurl rec {
|
2021-05-31 16:17:08 +01:00
|
|
|
version = "2.47.2";
|
2020-01-20 07:29:21 +00:00
|
|
|
url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86.msi";
|
2021-05-31 16:17:08 +01:00
|
|
|
sha256 = "07d6nrk2g0614kvwdjym1wq21d2bwy3pscwikk80qhnd6rrww875";
|
2016-02-02 03:55:46 +00:00
|
|
|
};
|
|
|
|
gecko64 = fetchurl rec {
|
2021-05-31 16:17:08 +01:00
|
|
|
version = "2.47.2";
|
2020-01-20 07:29:21 +00:00
|
|
|
url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86_64.msi";
|
2021-05-31 16:17:08 +01:00
|
|
|
sha256 = "0iffhvdawc499nbn4k99k33cr7g8sdfcvq8k3z1g6gw24h87d5h5";
|
2016-02-02 03:55:46 +00:00
|
|
|
};
|
2017-01-30 01:31:25 +00:00
|
|
|
|
2016-02-02 03:55:46 +00:00
|
|
|
## see http://wiki.winehq.org/Mono
|
|
|
|
mono = fetchurl rec {
|
2022-01-18 22:10:20 +00:00
|
|
|
version = "7.0.0";
|
2020-10-29 21:29:57 +00:00
|
|
|
url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi";
|
2022-01-18 22:10:20 +00:00
|
|
|
sha256 = "sha256-s35vyeWQ5YIkPcJdcqX8wzDDp5cN/cmKeoHSOEW6iQA=";
|
2016-02-02 03:55:46 +00:00
|
|
|
};
|
2020-11-24 20:02:24 +00:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
# Also look for root certificates at $NIX_SSL_CERT_FILE
|
2021-02-05 12:46:40 +00:00
|
|
|
./cert-path.patch
|
2020-11-24 20:02:24 +00:00
|
|
|
];
|
2016-02-02 03:55:46 +00:00
|
|
|
};
|
|
|
|
|
2022-01-29 20:38:06 +00:00
|
|
|
unstable = fetchurl rec {
|
|
|
|
# NOTE: Don't forget to change the SHA256 for staging as well.
|
|
|
|
version = "7.1";
|
|
|
|
url = "https://dl.winehq.org/wine/source/7.x/wine-${version}.tar.xz";
|
|
|
|
sha256 = "sha256-ETwTDu0vMlbJMv+7f0gqBTPtOsXGLJeWIqKm33+fY2o=";
|
|
|
|
inherit (stable) gecko32 gecko64 mono patches;
|
|
|
|
};
|
2016-02-02 03:55:46 +00:00
|
|
|
|
|
|
|
staging = fetchFromGitHub rec {
|
2018-05-08 18:27:20 +01:00
|
|
|
# https://github.com/wine-staging/wine-staging/releases
|
2016-02-02 03:55:46 +00:00
|
|
|
inherit (unstable) version;
|
2022-01-29 20:38:06 +00:00
|
|
|
sha256 = "sha256-exMQG/T6ZJggd6S1yN4wyWuNqr6GjjdG4VutGUcqZhE=";
|
2018-03-03 16:50:07 +00:00
|
|
|
owner = "wine-staging";
|
2016-02-02 03:55:46 +00:00
|
|
|
repo = "wine-staging";
|
2021-07-26 08:22:55 +01:00
|
|
|
rev = "v${version}";
|
2020-07-04 21:25:41 +01:00
|
|
|
|
2021-06-11 17:20:32 +01:00
|
|
|
disabledPatchsets = [ ];
|
2016-02-02 03:55:46 +00:00
|
|
|
};
|
|
|
|
|
2022-01-03 04:10:16 +00:00
|
|
|
wayland = fetchFromGitLab rec {
|
|
|
|
version = "7.0-rc2";
|
|
|
|
sha256 = "sha256-FU9L8cyIIfFQ+8f/AUg7IT+RxTpyNTuSfL0zBnur0SA=";
|
|
|
|
domain = "gitlab.collabora.com";
|
|
|
|
owner = "alf";
|
|
|
|
repo = "wine";
|
|
|
|
rev = "95f0154c96a4b7d81e783ee5ba2f5d9cc7cda351";
|
|
|
|
|
|
|
|
inherit (unstable) gecko32 gecko64;
|
|
|
|
|
|
|
|
inherit (unstable) mono;
|
|
|
|
};
|
|
|
|
|
2016-02-02 03:55:46 +00:00
|
|
|
winetricks = fetchFromGitHub rec {
|
2018-01-26 16:19:25 +00:00
|
|
|
# https://github.com/Winetricks/winetricks/releases
|
2021-08-28 13:56:27 +01:00
|
|
|
version = "20210825";
|
|
|
|
sha256 = "sha256-exMhj3dS8uXCEgOaWbftaq94mBOmtZIXsXb9xNX5ha8=";
|
2016-02-02 03:55:46 +00:00
|
|
|
owner = "Winetricks";
|
|
|
|
repo = "winetricks";
|
|
|
|
rev = version;
|
|
|
|
};
|
|
|
|
}
|