Author: eelco
Date: Mon Oct  3 20:42:45 2011
New Revision: 29617
URL: https://ssl.nixos.org/websvn/nix/?rev=29617&sc=1

Log:
* Wine 1.3.29.

Deleted:
   nixpkgs/trunk/pkgs/misc/emulators/wine/src-for-default.nix
   nixpkgs/trunk/pkgs/misc/emulators/wine/src-info-for-default.nix
Modified:
   nixpkgs/trunk/pkgs/misc/emulators/wine/default.nix

Modified: nixpkgs/trunk/pkgs/misc/emulators/wine/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/misc/emulators/wine/default.nix  Mon Oct  3 20:21:35 
2011        (r29616)
+++ nixpkgs/trunk/pkgs/misc/emulators/wine/default.nix  Mon Oct  3 20:42:45 
2011        (r29617)
@@ -6,21 +6,17 @@
 assert stdenv.isLinux;
 assert stdenv.gcc.gcc != null;
 
-let
-  s = import ./src-for-default.nix;
-in
-
 stdenv.mkDerivation rec {
-  name = "wine-${s.version}";
+  name = "wine-1.3.29";
 
   src = fetchurl {
-    url = s.url;
-    sha256 = s.hash;
+    url = "mirror://sourceforge/wine/${name}.tar.bz2";
+    sha256 = "1mi4xzbpqmian9q5bs6df8b1mfgnnd4mlh0kb2ynbpk7kmx0zyj1";
   };
 
   gecko = fetchurl {
-    url = "http://downloads.sourceforge.net/wine/wine_gecko-1.1.0-x86.cab";;
-    sha256 = "0a8bpqqhx146innrdwhn4c0jqi90mkmp8kw6aqwildm073yy31hp";
+    url = "mirror://sourceforge/wine/wine_gecko-1.3-x86.msi";
+    sha256 = "1bmm826dhq82jzxdld4x9cyg8mgzg8llkki59n9fvxggi7l5jxab";
   };
 
   buildInputs = [
@@ -45,7 +41,7 @@
   # elements specified above.
   dontPatchELF = true;
 
-  postInstall = "install -D ${gecko} 
$out/share/wine/gecko/wine_gecko-1.1.0-x86.cab";
+  postInstall = "install -D ${gecko} $out/share/wine/gecko/${gecko.name}";
 
   enableParallelBuilding = true;
 
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to