66 lines
2.4 KiB
Nix
66 lines
2.4 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;
|
|
in rec {
|
|
|
|
stable = fetchurl rec {
|
|
version = "5.0";
|
|
url = "https://dl.winehq.org/wine/source/5.0/wine-${version}.tar.xz";
|
|
sha256 = "1d0kcy338radq07hrnzcpc9lc9j2fvzjh37q673002x8d6x5058q";
|
|
|
|
## see http://wiki.winehq.org/Gecko
|
|
gecko32 = fetchurl rec {
|
|
version = "2.47.1";
|
|
url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86.msi";
|
|
sha256 = "0ld03pjm65xkpgqkvfsmk6h9krjsqbgxw4b8rvl2fj20j8l0w2zh";
|
|
};
|
|
gecko64 = fetchurl rec {
|
|
version = "2.47.1";
|
|
url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86_64.msi";
|
|
sha256 = "0jj7azmpy07319238g52a8m4nkdwj9g010i355ykxnl8m5wjwcb9";
|
|
};
|
|
|
|
## see http://wiki.winehq.org/Mono
|
|
mono = fetchurl rec {
|
|
version = "4.9.4";
|
|
url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}.msi";
|
|
sha256 = "1p8g45xphxnns7dkg9rbaknarbjy5cjhrngaf0fsgk9z68wgz9ji";
|
|
};
|
|
};
|
|
|
|
unstable = fetchurl rec {
|
|
# NOTE: Don't forget to change the SHA256 for staging as well.
|
|
version = "5.11";
|
|
url = "https://dl.winehq.org/wine/source/5.x/wine-${version}.tar.xz";
|
|
sha256 = "1q0sh89xnn6cq3kpqrrq9h316qyzpslj2w6m6vq7pq4y4p727nxk";
|
|
inherit (stable) mono gecko32 gecko64;
|
|
};
|
|
|
|
staging = fetchFromGitHub rec {
|
|
# https://github.com/wine-staging/wine-staging/releases
|
|
inherit (unstable) version;
|
|
sha256 = "050npck8mdck8m2rs9xn6mszzj2fv9ql80g08j2ahinf792svrid";
|
|
owner = "wine-staging";
|
|
repo = "wine-staging";
|
|
rev = "v${version}";
|
|
};
|
|
|
|
winetricks = fetchFromGitHub rec {
|
|
# https://github.com/Winetricks/winetricks/releases
|
|
version = "20200412";
|
|
sha256 = "0ccr8wdmhkhbccxs5hvn44ppl969n8j0c3rnnir5v6akjcb2nzzv";
|
|
owner = "Winetricks";
|
|
repo = "winetricks";
|
|
rev = version;
|
|
};
|
|
}
|