{ pkgs ? import { }, }: ## we default to importing here, so that you can use ## a simple shell command to insert new hashes 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, 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; 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} ''; # Needed for wine versions < 10.2 to fix compatibility with binutils 2.44 # https://github.com/NixOS/nixpkgs/issues/399714 # https://bugs.winehq.org/show_bug.cgi?id=57819 # https://gitlab.winehq.org/wine/wine/-/merge_requests/7328 patches-binutils-2_44-fix-wine-older-than-10_2 = [ (pkgs.fetchpatch { name = "ntdll-use-signed-type"; url = "https://gitlab.winehq.org/wine/wine/-/commit/fd59962827a715d321f91c9bdb43f3e61f9ebbc.patch"; hash = "sha256-PvFom9NJ32XZO1gYor9Cuk8+eaRFvmG572OAtNx1tks="; }) (pkgs.fetchpatch { name = "winebuild-avoid using-idata-section"; url = "https://gitlab.winehq.org/wine/wine/-/commit/c9519f68ea04915a60704534ab3afec5ec1b8fd7.patch"; hash = "sha256-vA58SfAgCXoCT+NB4SRHi85AnI4kj9S2deHGp4L36vI="; }) ]; inherit (pkgs) writeShellScript; in rec { stable = fetchurl rec { version = "10.0"; url = "https://dl.winehq.org/wine/source/10.0/wine-${version}.tar.xz"; hash = "sha256-xeCz9ffvr7MOnNTZxiS4XFgxcdM1SdkzzTQC80GsNgE="; ## see http://wiki.winehq.org/Gecko gecko32 = fetchurl rec { version = "2.47.4"; url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86.msi"; hash = "sha256-Js7MR3BrCRkI9/gUvdsHTGG+uAYzGOnvxaf3iYV3k9Y="; }; gecko64 = fetchurl rec { version = "2.47.4"; url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86_64.msi"; hash = "sha256-5ZC32YijLWqkzx2Ko6o9M3Zv3Uz0yJwtzCCV7LKNBm8="; }; ## see http://wiki.winehq.org/Mono mono = fetchurl rec { version = "8.1.0"; url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi"; hash = "sha256-DtPsUzrvebLzEhVZMc97EIAAmsDFtMK8/rZ4rJSOCBA="; }; patches = [ # Also look for root certificates at $NIX_SSL_CERT_FILE ./cert-path.patch ] ++ patches-binutils-2_44-fix-wine-older-than-10_2; updateScript = writeShellScript "update-wine-stable" '' ${updateScriptPreamble} major=''${UPDATE_NIX_OLD_VERSION%%.*} latest_stable=$(get_latest_wine_version "$major.0") # Can't use autobump on stable because we don't want the path # to become . if [[ "$UPDATE_NIX_OLD_VERSION" != "$latest_stable" ]]; then set_version_and_hash stable "$latest_stable" "$(nix-prefetch-url "$wine_url_base/source/$major.0/wine-$latest_stable.tar.xz")" fi do_update ''; }; unstable = fetchurl rec { # NOTE: Don't forget to change the hash for staging as well. version = "10.15"; url = "https://dl.winehq.org/wine/source/10.x/wine-${version}.tar.xz"; hash = "sha256-MH4hI3xui96iZvlG0x8J7SexlX35oDUW2Ccf0T4cJh0="; patches = [ # Also look for root certificates at $NIX_SSL_CERT_FILE ./cert-path.patch ]; # see https://gitlab.winehq.org/wine/wine-staging staging = fetchFromGitLab { inherit version; hash = "sha256-VzHM4Qm0XDP7suCT5dmJgoDJmZ1DLg6qqOUVQzNc0g4="; domain = "gitlab.winehq.org"; owner = "wine"; repo = "wine-staging"; rev = "v${version}"; disabledPatchsets = [ ]; }; ## see http://wiki.winehq.org/Gecko gecko32 = fetchurl rec { version = "2.47.4"; url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86.msi"; hash = "sha256-Js7MR3BrCRkI9/gUvdsHTGG+uAYzGOnvxaf3iYV3k9Y="; }; gecko64 = fetchurl rec { version = "2.47.4"; url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86_64.msi"; hash = "sha256-5ZC32YijLWqkzx2Ko6o9M3Zv3Uz0yJwtzCCV7LKNBm8="; }; ## see http://wiki.winehq.org/Mono mono = fetchurl rec { version = "10.2.0"; url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi"; hash = "sha256-Th7T8C6S0FMTPQPd++/PbbSk3CMamu0zZ7FxF6iIR9g="; }; updateScript = writeShellScript "update-wine-unstable" '' ${updateScriptPreamble} major=''${UPDATE_NIX_OLD_VERSION%%.*} latest_unstable=$(get_latest_wine_version "$major.x") latest_gecko=$(get_latest_lib_version wine-gecko) latest_mono=$(get_latest_lib_version wine-mono) update_staging() { staging_url=$(get_source_attr unstable.staging.url) set_source_attr unstable.staging hash "\"$(to_sri "$(nix-prefetch-url --unpack "''${staging_url//$1/$2}")")\"" } autobump unstable "$latest_unstable" "" update_staging autobump unstable.gecko32 "$latest_gecko" autobump unstable.gecko64 "$latest_gecko" autobump unstable.mono "$latest_mono" do_update ''; }; yabridge = fetchurl rec { # NOTE: This is a pinned version with staging patches; don't forget to update them as well version = "9.21"; url = "https://dl.winehq.org/wine/source/9.x/wine-${version}.tar.xz"; hash = "sha256-REK0f/2bLqRXEA427V/U5vTYKdnbeaJeYFF1qYjKL/8="; patches = [ # Also look for root certificates at $NIX_SSL_CERT_FILE ./cert-path.patch ] ++ patches-binutils-2_44-fix-wine-older-than-10_2; # see https://gitlab.winehq.org/wine/wine-staging staging = fetchFromGitLab { inherit version; hash = "sha256-FDNszRUvM1ewE9Ij4EkuihaX0Hf0eTb5r7KQHMdCX3U="; domain = "gitlab.winehq.org"; owner = "wine"; repo = "wine-staging"; rev = "v${version}"; disabledPatchsets = [ ]; }; ## see http://wiki.winehq.org/Gecko gecko32 = fetchurl rec { version = "2.47.4"; url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86.msi"; hash = "sha256-Js7MR3BrCRkI9/gUvdsHTGG+uAYzGOnvxaf3iYV3k9Y="; }; gecko64 = fetchurl rec { version = "2.47.4"; url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86_64.msi"; hash = "sha256-5ZC32YijLWqkzx2Ko6o9M3Zv3Uz0yJwtzCCV7LKNBm8="; }; ## see http://wiki.winehq.org/Mono mono = fetchurl rec { version = "9.3.0"; url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi"; hash = "sha256-bKLArtCW/57CD69et2xrfX3oLZqIdax92fB5O/nD/TA="; }; }; wayland = pkgs.lib.warnOnInstantiate "building wine with `wineRelease = \"wayland\"` is deprecated. Wine now builds with the wayland driver by default." stable; # added 2025-01-23 winetricks = fetchFromGitHub rec { # https://github.com/Winetricks/winetricks/releases version = "20250102"; hash = "sha256-Km2vVTYsLs091cjmNTW8Kqku3vdsEA0imTtZfqZWDQo="; owner = "Winetricks"; repo = "winetricks"; rev = version; 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 ''; }; }