Wine-Warcraft: minor cleanup

svn path=/nixpkgs/trunk/; revision=24307
This commit is contained in:
Evgeny Egorochkin 2010-10-15 20:06:20 +00:00
parent 3b49286bb2
commit a1b688cbfd

View File

@ -6,12 +6,9 @@
assert stdenv.isLinux;
assert stdenv.gcc.gcc != null;
let
s = import ./src-for-default.nix;
in
stdenv.mkDerivation rec {
name = "wine-warcraft-${s.version}";
name = "wine-warcraft-${version}";
version = "1.1.19";
src = fetchgit {
url = git://repo.or.cz/wine/warcraft3.git;
@ -40,11 +37,11 @@ stdenv.mkDerivation rec {
# elements specified above.
dontPatchELF = true;
meta = {
meta = with stdenv.lib; {
homepage = "http://www.winehq.org/";
license = "LGPL";
description = "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix";
maintainers = [ stdenv.lib.maintainers.raskin ];
description = "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix with patches for Warcraft 3";
maintainers = [ maintainers.phreedom ];
platforms = [ "i686-linux" ];
};
}