nixpkgs/pkgs/misc/emulators/wine/sources.nix

66 lines
2.4 KiB
Nix
Raw Normal View History

{ 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 {
2019-06-10 20:18:06 +02:00
version = "4.0.1";
2019-01-24 02:10:00 +01:00
url = "https://dl.winehq.org/wine/source/4.0/wine-${version}.tar.xz";
2019-06-10 20:18:06 +02:00
sha256 = "0j29df0px6dzin4j0cbxgza4msvf9spmwranv25krq1g9kq959nk";
## see http://wiki.winehq.org/Gecko
gecko32 = fetchurl rec {
2017-01-30 02:31:25 +01:00
version = "2.47";
url = "http://dl.winehq.org/wine/wine-gecko/${version}/wine_gecko-${version}-x86.msi";
2017-01-30 02:31:25 +01:00
sha256 = "0fk4fwb4ym8xn0i5jv5r5y198jbpka24xmxgr8hjv5b3blgkd2iv";
};
gecko64 = fetchurl rec {
2017-01-30 02:31:25 +01:00
version = "2.47";
url = "http://dl.winehq.org/wine/wine-gecko/${version}/wine_gecko-${version}-x86_64.msi";
2017-01-30 02:31:25 +01:00
sha256 = "0zaagqsji6zaag92fqwlasjs8v9hwjci5c2agn9m7a8fwljylrf5";
};
2017-01-30 02:31:25 +01:00
## see http://wiki.winehq.org/Mono
mono = fetchurl rec {
2019-04-27 14:54:20 +02:00
version = "4.8.3";
url = "http://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}.msi";
2019-04-27 14:54:20 +02:00
sha256 = "0xhavcjwwr21am3bxp2cxlvykwasw8y4g8p470j5fg7skc0izynn";
};
};
unstable = fetchurl rec {
# NOTE: Don't forget to change the SHA256 for staging as well.
2019-06-10 20:18:06 +02:00
version = "4.9";
2019-02-17 19:07:33 +01:00
url = "https://dl.winehq.org/wine/source/4.x/wine-${version}.tar.xz";
2019-06-10 20:18:06 +02:00
sha256 = "16vrzhhk0x862mfhninx5515s76j2kbjgmz7gzdigjzkzwi8x14i";
2017-01-30 02:31:25 +01:00
inherit (stable) mono gecko32 gecko64;
};
staging = fetchFromGitHub rec {
2018-05-08 19:27:20 +02:00
# https://github.com/wine-staging/wine-staging/releases
inherit (unstable) version;
2019-06-10 20:18:06 +02:00
sha256 = "17v66rsxvm3grglidxxzllw4msfrgwg35hmzanvrf8x8jfzjlvv2";
2018-03-03 17:50:07 +01:00
owner = "wine-staging";
repo = "wine-staging";
rev = "v${version}";
};
winetricks = fetchFromGitHub rec {
# https://github.com/Winetricks/winetricks/releases
2019-03-28 22:46:21 +01:00
version = "20190310";
sha256 = "0mqzl7k9q7lfkmk8fk9dfzi2dm45h31mrid9265qh2d56nk28ali";
owner = "Winetricks";
repo = "winetricks";
rev = version;
};
}