Skip to content

Commit

Permalink
wineStaging: remove evaluation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bendlas committed Jan 26, 2018
1 parent e3df936 commit 4e8cd90
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/misc/emulators/wine/default.nix
Expand Up @@ -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;
# }
Expand Down
4 changes: 4 additions & 0 deletions pkgs/misc/emulators/wine/sources.nix
Expand Up @@ -46,14 +46,18 @@ 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";
rev = "v${version}";
};

winetricks = fetchFromGitHub rec {
# https://github.com/Winetricks/winetricks/releases
version = "20171222";
sha256 = "04risg44kqq8z9nsflw7m7dqykw2aii8m8j495z6fgb7p0pi8ny9";
owner = "Winetricks";
Expand Down

1 comment on commit 4e8cd90

@bendlas
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see 4fec62d

Please sign in to comment.