2020-04-24 23:36:52 +00:00
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
## we default to importing <nixpkgs> here, so that you can use
|
2023-02-09 11:40:11 +00:00
|
|
|
## a simple shell command to insert new hashes into this file
|
2020-04-24 23:36:52 +00:00
|
|
|
## 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
|
2023-02-09 11:40:11 +00:00
|
|
|
let fetchurl = args@{url, hash, ...}:
|
|
|
|
pkgs.fetchurl { inherit url hash; } // args;
|
|
|
|
fetchFromGitHub = args@{owner, repo, rev, hash, ...}:
|
|
|
|
pkgs.fetchFromGitHub { inherit owner repo rev hash; } // args;
|
|
|
|
fetchFromGitLab = args@{domain, owner, repo, rev, hash, ...}:
|
|
|
|
pkgs.fetchFromGitLab { inherit domain owner repo rev hash; } // args;
|
2022-12-17 10:02:37 +00:00
|
|
|
|
|
|
|
updateScriptPreamble = ''
|
|
|
|
set -eou pipefail
|
|
|
|
PATH=${with pkgs; lib.makeBinPath [ common-updater-scripts coreutils curl gnugrep gnused jq nix ]}
|
|
|
|
sources_file=${__curPos.file}
|
|
|
|
source ${./update-lib.sh}
|
|
|
|
'';
|
|
|
|
|
|
|
|
inherit (pkgs) writeShellScript;
|
2020-04-24 23:36:52 +00:00
|
|
|
in rec {
|
|
|
|
|
|
|
|
stable = fetchurl rec {
|
2023-02-09 11:40:11 +00:00
|
|
|
version = "8.0";
|
|
|
|
url = "https://dl.winehq.org/wine/source/8.0/wine-${version}.tar.xz";
|
|
|
|
hash = "sha256-AnLCCTj4chrkUQr6qLNgN0V91XZh5NZkIxB5uekceS4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
## see http://wiki.winehq.org/Gecko
|
|
|
|
gecko32 = fetchurl rec {
|
2022-07-18 16:21:45 +00:00
|
|
|
version = "2.47.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86.msi";
|
2023-02-09 11:40:11 +00:00
|
|
|
hash = "sha256-5bmwbTzjVWRqjS5y4ETjfh4MjRhGTrGYWtzRh6f0jgE=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
gecko64 = fetchurl rec {
|
2022-07-18 16:21:45 +00:00
|
|
|
version = "2.47.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86_64.msi";
|
2023-02-09 11:40:11 +00:00
|
|
|
hash = "sha256-pT7pVDkrbR/j1oVF9uTiqXr7yNyLA6i0QzSVRc4TlnU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
## see http://wiki.winehq.org/Mono
|
|
|
|
mono = fetchurl rec {
|
2023-02-09 11:40:11 +00:00
|
|
|
version = "7.4.0";
|
2020-11-30 08:33:03 +00:00
|
|
|
url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi";
|
2023-02-09 11:40:11 +00:00
|
|
|
hash = "sha256-ZBP/Mo679+x2icZI/rNUbYEC3thlB50fvwMxsUs6sOw=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2020-11-30 08:33:03 +00:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
# Also look for root certificates at $NIX_SSL_CERT_FILE
|
2021-02-13 14:23:35 +00:00
|
|
|
./cert-path.patch
|
2020-11-30 08:33:03 +00:00
|
|
|
];
|
2022-12-17 10:02:37 +00:00
|
|
|
|
|
|
|
updateScript = writeShellScript "update-wine-stable" (''
|
|
|
|
${updateScriptPreamble}
|
2023-02-09 11:40:11 +00:00
|
|
|
major=''${UPDATE_NIX_OLD_VERSION%%.*}
|
2022-12-17 10:02:37 +00:00
|
|
|
latest_stable=$(get_latest_wine_version "$major.0")
|
|
|
|
latest_gecko=$(get_latest_lib_version wine-gecko)
|
|
|
|
|
|
|
|
# Can't use autobump on stable because we don't want the path
|
|
|
|
# <source/7.0/wine-7.0.tar.xz> to become <source/7.0.1/wine-7.0.1.tar.xz>.
|
|
|
|
if [[ "$UPDATE_NIX_OLD_VERSION" != "$latest_stable" ]]; then
|
2023-02-09 11:40:11 +00:00
|
|
|
set_version_and_hash stable "$latest_stable" "$(nix-prefetch-url "$wine_url_base/source/$major.0/wine-$latest_stable.tar.xz")"
|
2022-12-17 10:02:37 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
autobump stable.gecko32 "$latest_gecko"
|
|
|
|
autobump stable.gecko64 "$latest_gecko"
|
|
|
|
|
|
|
|
do_update
|
|
|
|
'');
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-02-10 20:34:41 +00:00
|
|
|
unstable = fetchurl rec {
|
2023-02-09 11:40:11 +00:00
|
|
|
# NOTE: Don't forget to change the hash for staging as well.
|
2023-04-12 12:48:02 +00:00
|
|
|
version = "8.5";
|
2023-02-09 11:40:11 +00:00
|
|
|
url = "https://dl.winehq.org/wine/source/8.x/wine-${version}.tar.xz";
|
2023-04-12 12:48:02 +00:00
|
|
|
hash = "sha256-wJdmQBswu0JeEy4RSyba+kJ2SX5AzL4V+3fnUfsJvhc=";
|
2022-02-20 05:27:41 +00:00
|
|
|
inherit (stable) gecko32 gecko64 patches;
|
|
|
|
|
|
|
|
mono = fetchurl rec {
|
2022-11-21 17:40:18 +00:00
|
|
|
version = "7.4.0";
|
2022-02-20 05:27:41 +00:00
|
|
|
url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi";
|
2023-02-09 11:40:11 +00:00
|
|
|
hash = "sha256-ZBP/Mo679+x2icZI/rNUbYEC3thlB50fvwMxsUs6sOw=";
|
2022-02-20 05:27:41 +00:00
|
|
|
};
|
2022-12-17 10:02:37 +00:00
|
|
|
|
|
|
|
updateScript = writeShellScript "update-wine-unstable" ''
|
|
|
|
${updateScriptPreamble}
|
2023-02-09 11:40:11 +00:00
|
|
|
major=''${UPDATE_NIX_OLD_VERSION%%.*}
|
2022-12-17 10:02:37 +00:00
|
|
|
latest_unstable=$(get_latest_wine_version "$major.x")
|
|
|
|
latest_mono=$(get_latest_lib_version wine-mono)
|
|
|
|
|
|
|
|
update_staging() {
|
|
|
|
staging_url=$(get_source_attr staging.url)
|
2023-02-09 11:40:11 +00:00
|
|
|
set_source_attr staging hash "\"$(to_sri "$(nix-prefetch-url --unpack "''${staging_url//$1/$2}")")\""
|
2022-12-17 10:02:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
autobump unstable "$latest_unstable" "" update_staging
|
|
|
|
autobump unstable.mono "$latest_mono"
|
|
|
|
|
|
|
|
do_update
|
|
|
|
'';
|
2022-02-10 20:34:41 +00:00
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
staging = fetchFromGitHub rec {
|
|
|
|
# https://github.com/wine-staging/wine-staging/releases
|
|
|
|
inherit (unstable) version;
|
2023-04-12 12:48:02 +00:00
|
|
|
hash = "sha256-vHV7x2U9B4P0E4tcQuMXHSS4NqN7rlnhC6v/t+0Qlh0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
owner = "wine-staging";
|
|
|
|
repo = "wine-staging";
|
2021-08-05 21:33:18 +00:00
|
|
|
rev = "v${version}";
|
2020-07-18 16:06:22 +00:00
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
disabledPatchsets = [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-03-15 16:39:30 +00:00
|
|
|
wayland = fetchFromGitLab {
|
2022-11-04 12:27:35 +00:00
|
|
|
# https://gitlab.collabora.com/alf/wine/-/tree/wayland
|
2023-02-09 11:40:11 +00:00
|
|
|
version = "8.0";
|
|
|
|
hash = "sha256-whRnm21UyKZ4AQufNmctzivISVobnCeidmpYz65vlyk=";
|
2022-01-25 03:21:06 +00:00
|
|
|
domain = "gitlab.collabora.com";
|
|
|
|
owner = "alf";
|
|
|
|
repo = "wine";
|
2023-02-09 11:40:11 +00:00
|
|
|
rev = "2f80bd757739f2dd8da41abceae6b87d2c568152";
|
2022-01-25 03:21:06 +00:00
|
|
|
|
|
|
|
inherit (unstable) gecko32 gecko64;
|
|
|
|
|
|
|
|
inherit (unstable) mono;
|
2022-12-17 10:02:37 +00:00
|
|
|
|
|
|
|
updateScript = writeShellScript "update-wine-wayland" ''
|
|
|
|
${updateScriptPreamble}
|
|
|
|
wayland_rev=$(get_source_attr wayland.rev)
|
|
|
|
|
|
|
|
latest_wayland_rev=$(curl -s 'https://gitlab.collabora.com/api/v4/projects/2847/repository/branches/wayland' | jq -r .commit.id)
|
|
|
|
|
|
|
|
if [[ "$wayland_rev" != "$latest_wayland_rev" ]]; then
|
|
|
|
latest_wayland=$(curl -s 'https://gitlab.collabora.com/alf/wine/-/raw/wayland/VERSION' | cut -f3 -d' ')
|
|
|
|
wayland_url=$(get_source_attr wayland.url)
|
2023-02-09 11:40:11 +00:00
|
|
|
set_version_and_hash wayland "$latest_wayland" "$(nix-prefetch-url --unpack "''${wayland_url/$wayland_rev/$latest_wayland_rev}")"
|
2022-12-17 10:02:37 +00:00
|
|
|
set_source_attr wayland rev "\"$latest_wayland_rev\""
|
|
|
|
fi
|
|
|
|
|
|
|
|
do_update
|
|
|
|
'';
|
2022-01-25 03:21:06 +00:00
|
|
|
};
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
winetricks = fetchFromGitHub rec {
|
|
|
|
# https://github.com/Winetricks/winetricks/releases
|
2023-03-08 16:32:21 +00:00
|
|
|
version = "20230212";
|
|
|
|
hash = "sha256-pd37QTcqY5ZaVBssGecuqziOIq1p0JH0ZDB+oLmp9JU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
owner = "Winetricks";
|
|
|
|
repo = "winetricks";
|
|
|
|
rev = version;
|
2022-12-17 10:02:37 +00:00
|
|
|
|
|
|
|
updateScript = writeShellScript "update-winetricks" ''
|
|
|
|
${updateScriptPreamble}
|
|
|
|
winetricks_repourl=$(get_source_attr winetricks.gitRepoUrl)
|
|
|
|
|
|
|
|
latest_winetricks=$(list-git-tags --url="$winetricks_repourl" | grep -E '^[0-9]{8}$' | sort --reverse --numeric-sort | head -n 1)
|
|
|
|
|
|
|
|
autobump winetricks "$latest_winetricks" 'nix-prefetch-url --unpack'
|
|
|
|
|
|
|
|
do_update
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|