3
0
Fork 0
forked from mirrors/nixpkgs

Merge commit 'refs/pull/15308/head' of git://github.com/NixOS/nixpkgs

This commit is contained in:
Nikolay Amiantov 2016-05-10 14:36:29 +03:00
commit 173728069b
2 changed files with 53 additions and 16 deletions
pkgs
games/openra
top-level

View file

@ -4,7 +4,7 @@
}: }:
let let
version = "20151224"; version = "20160508";
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
name = "openra-${version}"; name = "openra-${version}";
@ -19,17 +19,18 @@ in stdenv.mkDerivation rec {
src = fetchurl { src = fetchurl {
name = "${name}.tar.gz"; name = "${name}.tar.gz";
url = "https://github.com/OpenRA/OpenRA/archive/release-${version}.tar.gz"; url = "https://github.com/OpenRA/OpenRA/archive/release-${version}.tar.gz";
sha256 = "0dgaxy1my5r3sr3l3gw79v89dsc7179pasj2bibswlv03wsjgqbi"; sha256 = "1vr5bvdkh0n5569ga2h7ggj43vnzr37hfqkfnsis1sg4vgwrnzr7";
}; };
dontStrip = true; dontStrip = true;
buildInputs = with dotnetPackages; buildInputs = with dotnetPackages;
[ NUnit NewtonsoftJson MonoNat FuzzyLogicLibrary SmartIrc4net SharpZipLib MaxMindGeoIP2 MaxMindDb SharpFont StyleCopMSBuild StyleCopPlusMSBuild RestSharp ] [ NUnit3 NewtonsoftJson MonoNat FuzzyLogicLibrary SmartIrc4net SharpZipLib MaxMindGeoIP2 MaxMindDb SharpFont StyleCopMSBuild StyleCopPlusMSBuild RestSharp NUnitConsole ]
++ [ lua gnome3.zenity ]; ++ [ lua gnome3.zenity ];
nativeBuildInputs = [ mono makeWrapper lua pkgconfig ]; nativeBuildInputs = [ mono makeWrapper lua pkgconfig ];
patchPhase = '' patchPhase = ''
mkdir Support
sed -i 's/^VERSION.*/VERSION = release-${version}/g' Makefile sed -i 's/^VERSION.*/VERSION = release-${version}/g' Makefile
substituteInPlace thirdparty/configure-native-deps.sh --replace "locations=\"" "locations=\"${lua}/lib " substituteInPlace thirdparty/configure-native-deps.sh --replace "locations=\"" "locations=\"${lua}/lib "
substituteInPlace Makefile --replace "@./thirdparty/fetch-geoip-db.sh" "" substituteInPlace Makefile --replace "@./thirdparty/fetch-geoip-db.sh" ""
@ -53,37 +54,57 @@ in stdenv.mkDerivation rec {
"${StyleCopPlusMSBuild}/lib/dotnet/StyleCopPlus.MSBuild/StyleCopPlus.dll" "${StyleCopPlusMSBuild}/lib/dotnet/StyleCopPlus.MSBuild/StyleCopPlus.dll"
"${RestSharp}/lib/dotnet/RestSharp/net4-client/RestSharp.dll" "${RestSharp}/lib/dotnet/RestSharp/net4-client/RestSharp.dll"
"${NUnit}/lib/dotnet/NUnit/nunit.framework.*" "${NUnit}/lib/dotnet/NUnit/nunit.framework.*"
"${NUnitConsole}/lib/dotnet/NUnit.Console/*"
"${NewtonsoftJson}/lib/dotnet/Newtonsoft.Json/Newtonsoft.Json.dll" "${NewtonsoftJson}/lib/dotnet/Newtonsoft.Json/Newtonsoft.Json.dll"
]; ];
movePackages = [ movePackages = [
( let filename = "Eluant.dll"; in { origin = fetchurl { ( let filename = "Eluant.dll"; in { origin = fetchurl {
url = "https://github.com/OpenRA/Eluant/releases/download/20140425/${filename}"; url = "https://github.com/OpenRA/Eluant/releases/download/20160124/${filename}";
sha256 = "1c20whz7dzfhg3szd62rvb79745x5iwrd5pp62j3bbj1q9wpddmb"; sha256 = "1c20whz7dzfhg3szd62rvb79745x5iwrd5pp62j3bbj1q9wpddmb";
}; target = filename; }) }; target = filename; })
( let filename = "SDL2-CS.dll"; in { origin = fetchurl { ( let filename = "SDL2-CS.dll"; in { origin = fetchurl {
url = "https://github.com/OpenRA/SDL2-CS/releases/download/20150709/${filename}"; url = "https://github.com/OpenRA/SDL2-CS/releases/download/20151227/${filename}";
sha256 = "0ms75w9w0x3dzpg5g1ym5nb1id7pmagbzqx0am7h8fq4m0cqddmc"; sha256 = "0gqw2wg37cqhhlc2a9lfc4ndkyfi4m8bkv7ckxbawgydjlknq83n";
}; target = filename; })
( let filename = "SDL2-CS.dll.config"; in { origin = fetchurl {
url = "https://github.com/OpenRA/SDL2-CS/releases/download/20151227/${filename}";
sha256 = "15709iscdg44wd33szw5y0fdxwvqfjw8v3xjq6a0mm46gr7mkw7g";
}; target = filename; })
( let filename = "OpenAL-CS.dll"; in { origin = fetchurl {
url = "https://github.com/OpenRA/OpenAL-CS/releases/download/20151227/${filename}";
sha256 = "0lvyjkn7fqys97wym8rwlcp6ay2z059iabfvlcxhlrscjpyr2cyk";
}; target = filename; })
( let filename = "OpenAL-CS.dll.config"; in { origin = fetchurl {
url = "https://github.com/OpenRA/OpenAL-CS/releases/download/20151227/${filename}";
sha256 = "0wcmk3dw26s93598ck5jism5609v0y233i0f1b76yilyfimg9sjq";
}; target = filename; }) }; target = filename; })
( let filename = "GeoLite2-Country.mmdb.gz"; in { origin = fetchurl { ( let filename = "GeoLite2-Country.mmdb.gz"; in { origin = fetchurl {
url = "http://geolite.maxmind.com/download/geoip/database/${filename}"; url = "http://geolite.maxmind.com/download/geoip/database/${filename}";
sha256 = "0lr978pipk5q2z3x011ps4fx5nfc3hsal7jb77fc60aa6iscr05m"; sha256 = "0a82v0sj4zf5vigrn1pd6mnbqz6zl3rgk9nidqqzy836as2kxk9v";
}; target = filename; }) }; target = filename; })
]; ];
in '' in ''
mkdir thirdparty/download/ mkdir thirdparty/download/
${stdenv.lib.concatMapStringsSep "\n" (from: "cp ${from} thirdparty/download") dotnetPackagesDlls} ${stdenv.lib.concatMapStringsSep "\n" (from: "cp -r ${from} thirdparty/download") dotnetPackagesDlls}
${stdenv.lib.concatMapStringsSep "\n" ({origin, target}: "cp ${origin} thirdparty/download/${target}") movePackages} ${stdenv.lib.concatMapStringsSep "\n" ({origin, target}: "cp ${origin} thirdparty/download/${target}") movePackages}
make dependencies make dependencies
''; '';
#todo: man-page buildFlags = [ "DEBUG=false" "default" "man-page" ];
buildFlags = [ "DEBUG=false" "default" ];
installTargets = [ "install" "install-linux-icons" "install-linux-desktop" "install-linux-appdata" "install-linux-mime" ]; doCheck = true;
#TODO: check
checkTarget = "nunit test";
installTargets = [ "install" "install-linux-icons" "install-linux-desktop" "install-linux-appdata" "install-linux-mime" "install-man-page" ];
postInstall = with stdenv.lib; let postInstall = with stdenv.lib; let
runtime = makeLibraryPath [ SDL2 freetype openal systemd lua ]; runtime = makeLibraryPath [ SDL2 freetype openal systemd lua ];

View file

@ -95,13 +95,29 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
outputFiles = [ "lib/net40/*" ]; outputFiles = [ "lib/net40/*" ];
}; };
NUnit = fetchNuGet { NUnit3 = fetchNuGet {
baseName = "NUnit";
version = "3.0.1";
sha256 = "1g3j3kvg9vrapb1vjgq65nvn1vg7bzm66w7yjnaip1iww1yn1b0p";
outputFiles = [ "lib/*" ];
};
NUnit2 = fetchNuGet {
baseName = "NUnit"; baseName = "NUnit";
version = "2.6.4"; version = "2.6.4";
sha256 = "1acwsm7p93b1hzfb83ia33145x0w6fvdsfjm9xflsisljxpdx35y"; sha256 = "1acwsm7p93b1hzfb83ia33145x0w6fvdsfjm9xflsisljxpdx35y";
outputFiles = [ "lib/*" ]; outputFiles = [ "lib/*" ];
}; };
NUnit = NUnit2;
NUnitConsole = fetchNuGet {
baseName = "NUnit.Console";
version = "3.0.1";
sha256 = "154bqwm2n95syv8nwd67qh8qsv0b0h5zap60sk64z3kd3a9ffi5p";
outputFiles = [ "tools/*" ];
};
MaxMindDb = fetchNuGet { MaxMindDb = fetchNuGet {
baseName = "MaxMind.Db"; baseName = "MaxMind.Db";
version = "1.1.0.0"; version = "1.1.0.0";
@ -146,8 +162,8 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
SharpFont = fetchNuGet { SharpFont = fetchNuGet {
baseName = "SharpFont"; baseName = "SharpFont";
version = "3.0.1"; version = "3.1.0";
sha256 = "1g639i8mbxc6qm0xqsf4mc0shv8nwdaidllka2xxwyksbq54skhs"; sha256 = "137y514i4zi0i0qsx7nv4ibl4kifbr8xr23rqdkwf7yxf88jjmh2";
outputFiles = [ "lib/*" "config/*" ]; outputFiles = [ "lib/*" "config/*" ];
}; };
@ -167,8 +183,8 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
MonoNat = fetchNuGet { MonoNat = fetchNuGet {
baseName = "Mono.Nat"; baseName = "Mono.Nat";
version = "1.2.21"; version = "1.2.24";
sha256 = "011xhmjrx6w5h110fcp40l95k3qj1gkzz3axgbfy0s8haf5hsf7s"; sha256 = "0vfkach11kkcd9rcqz3s38m70d5spyb21gl99iqnkljxj5555wjs";
outputFiles = [ "lib/*" ]; outputFiles = [ "lib/*" ];
}; };