1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

wineStaging: remove evaluation warning

cc @peti @7c6f434c
This commit is contained in:
Herwig Hochleitner 2018-01-26 17:19:25 +01:00
parent e3df936356
commit 4e8cd90b67
2 changed files with 7 additions and 1 deletions

View file

@ -57,7 +57,9 @@ let wine-build = build: release:
in if wineRelease == "staging" then
let wineUnstable = wine-build wineBuild "unstable"; in
builtins.trace "WARNING: wine staging is not yet at 3.0, using unstable" ( wineUnstable )
# wine staging is not yet at 3.0, using unstable
# FIXME update winestaging sources
wineUnstable
# callPackage ./staging.nix {
# inherit libtxc_dxtn_Name wineUnstable;
# }

View file

@ -46,7 +46,10 @@ in rec {
};
staging = fetchFromGitHub rec {
# https://github.com/wine-compholio/wine-staging/releases
inherit (unstable) version;
# FIXME update winestaging sources, when 3.0 is released
# FIXME then revert the staging derivation in ./default.nix
sha256 = "1qznp4kgss4mhk1vvr91jmszsi47xg312r64l76jkgwijhypmvb7";
owner = "wine-compholio";
repo = "wine-staging";
@ -54,6 +57,7 @@ in rec {
};
winetricks = fetchFromGitHub rec {
# https://github.com/Winetricks/winetricks/releases
version = "20171222";
sha256 = "04risg44kqq8z9nsflw7m7dqykw2aii8m8j495z6fgb7p0pi8ny9";
owner = "Winetricks";