94 lines
3.2 KiB
Nix
94 lines
3.2 KiB
Nix
{ 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;
|
|
fetchFromGitLab = args@{domain, owner, repo, rev, sha256, ...}:
|
|
pkgs.fetchFromGitLab { inherit domain owner repo rev sha256; } // args;
|
|
in rec {
|
|
|
|
stable = fetchurl rec {
|
|
version = "7.0";
|
|
url = "https://dl.winehq.org/wine/source/7.0/wine-${version}.tar.xz";
|
|
sha256 = "sha256-W0PifVwIXLGPlzlORhgDENXu98HZHGiVQyo4ibLeCGs=";
|
|
|
|
## see http://wiki.winehq.org/Gecko
|
|
gecko32 = fetchurl rec {
|
|
version = "2.47.3";
|
|
url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86.msi";
|
|
sha256 = "sha256-5bmwbTzjVWRqjS5y4ETjfh4MjRhGTrGYWtzRh6f0jgE=";
|
|
};
|
|
gecko64 = fetchurl rec {
|
|
version = "2.47.3";
|
|
url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86_64.msi";
|
|
sha256 = "sha256-pT7pVDkrbR/j1oVF9uTiqXr7yNyLA6i0QzSVRc4TlnU=";
|
|
};
|
|
|
|
## 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 = fetchurl rec {
|
|
# NOTE: Don't forget to change the SHA256 for staging as well.
|
|
version = "7.17";
|
|
url = "https://dl.winehq.org/wine/source/7.x/wine-${version}.tar.xz";
|
|
sha256 = "sha256-JDa4rFDWKPTKOsUwDBgmY9/PpIuhulVIp3KOtmH7T0E=";
|
|
inherit (stable) gecko32 gecko64 patches;
|
|
|
|
mono = fetchurl rec {
|
|
version = "7.3.0";
|
|
url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi";
|
|
sha256 = "sha256-k54vVmlyDQ0Px+MFQmYioRozt644XE1+WB4p6iZOIv8=";
|
|
};
|
|
};
|
|
|
|
staging = fetchFromGitHub rec {
|
|
# https://github.com/wine-staging/wine-staging/releases
|
|
inherit (unstable) version;
|
|
sha256 = "sha256-eC5nYX6Cjutd30rrAn6SavWlQtF8swMHDzsESN4SUmo=";
|
|
owner = "wine-staging";
|
|
repo = "wine-staging";
|
|
rev = "v${version}";
|
|
|
|
disabledPatchsets = [ ];
|
|
};
|
|
|
|
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;
|
|
};
|
|
|
|
winetricks = fetchFromGitHub rec {
|
|
# https://github.com/Winetricks/winetricks/releases
|
|
version = "20220411";
|
|
sha256 = "sha256-FjH10nZDYbqXI6/vKpZJKfv2maXSVkahNDf5UTU3eyU=";
|
|
owner = "Winetricks";
|
|
repo = "winetricks";
|
|
rev = version;
|
|
};
|
|
}
|