Update wine (use new updater script in the process)
svn path=/nixpkgs/trunk/; revision=16817
This commit is contained in:
parent
5a6e313abf
commit
f0a3ff997f
@ -6,14 +6,17 @@
|
|||||||
assert stdenv.isLinux;
|
assert stdenv.isLinux;
|
||||||
assert stdenv.gcc.gcc != null;
|
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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "wine-1.1.23";
|
name = "wine-${s.version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/wine/${name}.tar.bz2";
|
url = s.url;
|
||||||
sha256 = "0fg8s3y8975bwjyfw705q0sjch56vsndw3pc8n0j8dshhcbbrv5p";
|
sha256 = s.hash;
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
6
pkgs/misc/emulators/wine/src-for-default.nix
Normal file
6
pkgs/misc/emulators/wine/src-for-default.nix
Normal 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";
|
||||||
|
}
|
3
pkgs/misc/emulators/wine/src-info-for-default.nix
Normal file
3
pkgs/misc/emulators/wine/src-info-for-default.nix
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
downloadPage = "http://www.winehq.org/";
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user