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:
parent
e3df936356
commit
4e8cd90b67
|
@ -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;
|
||||
# }
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue