Make "nix-env -i wine" work again

Also, make wine32 the default again to prevent a huge closure size
regression. (It recently grew by ~1 GB:
http://hydra.nixos.org/job/nixos/trunk-combined/nixpkgs.wineStable.x86_64-linux#tabs-charts)

Issue #8990.
This commit is contained in:
Eelco Dolstra
2015-08-25 13:07:16 +02:00
parent aa3b13549f
commit 60a0bb7f66
2 changed files with 5 additions and 6 deletions
+2 -2
View File
@@ -27,7 +27,7 @@ let sources = with lib.getAttr wineRelease (import ./versions.nix); {
inherit (sources) version;
in {
wine32 = import ./base.nix {
name = "wine32-${version}";
name = "wine-${version}";
inherit (sources) version src;
inherit (pkgsi686Linux) lib stdenv;
pkgArches = [ pkgsi686Linux ];
@@ -46,7 +46,7 @@ in {
platforms = [ "x86_64-linux" ];
};
wineWow = import ./base.nix {
name = "wineWow-${version}";
name = "wine-wow-${version}";
inherit (sources) version src;
inherit lib;
stdenv = stdenv_32bit;