Update wine (use new updater script in the process)

svn path=/nixpkgs/trunk/; revision=16817
This commit is contained in:
Michael Raskin 2009-08-23 22:24:17 +00:00
parent 5a6e313abf
commit f0a3ff997f
3 changed files with 16 additions and 4 deletions

View file

@ -6,14 +6,17 @@
assert stdenv.isLinux;
assert stdenv.gcc.gcc != null;
let lib = import ../../../lib/default.nix; in
let
lib = import ../../../lib/default.nix;
s = import ./src-for-default.nix;
in
stdenv.mkDerivation rec {
name = "wine-1.1.23";
name = "wine-${s.version}";
src = fetchurl {
url = "mirror://sourceforge/wine/${name}.tar.bz2";
sha256 = "0fg8s3y8975bwjyfw705q0sjch56vsndw3pc8n0j8dshhcbbrv5p";
url = s.url;
sha256 = s.hash;
};
buildInputs = [

View file

@ -0,0 +1,6 @@
rec {
advertisedUrl="http://prdownloads.sourceforge.net/wine/wine-1.1.28.tar.bz2";
version = "1.1.28";
url="http://prdownloads.sourceforge.net/wine/wine-${version}.tar.bz2";
hash = "009h97799r0fbn6pxaqlfmvzyiy4znn87vvnr8ppmjhgbwd80wmy";
}

View file

@ -0,0 +1,3 @@
{
downloadPage = "http://www.winehq.org/";
}