mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
warsow: clean up
- Do not contaminate builder environment with libraries, substitute them in the patch directly. - Switch to pname from name. - Run installPhase hooks. - Correct license.
This commit is contained in:
parent
57231d7524
commit
4d8ea30a4f
@ -1,15 +1,9 @@
|
|||||||
{ stdenv, lib, fetchurl, cmake, libogg, libvorbis, libtheora, curl, freetype
|
{ stdenv, lib, substituteAll, fetchurl, cmake, libogg, libvorbis, libtheora, curl, freetype
|
||||||
, libjpeg, libpng, SDL2, libGL, openal, zlib
|
, libjpeg, libpng, SDL2, libGL, openal, zlib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
# The game loads all those via dlopen().
|
pname = "warsow-engine";
|
||||||
libs = lib.mapAttrs (name: x: lib.getLib x) {
|
|
||||||
inherit zlib curl libpng libjpeg libogg libvorbis libtheora freetype;
|
|
||||||
};
|
|
||||||
|
|
||||||
in stdenv.mkDerivation (libs // rec {
|
|
||||||
name = "warsow-engine-${version}";
|
|
||||||
version = "2.1.0";
|
version = "2.1.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
@ -17,6 +11,13 @@ in stdenv.mkDerivation (libs // rec {
|
|||||||
sha256 = "0fj5k7qpf6far8i1xhqxlpfjch10zj26xpilhp95aq2yiz08pj4r";
|
sha256 = "0fj5k7qpf6far8i1xhqxlpfjch10zj26xpilhp95aq2yiz08pj4r";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(substituteAll {
|
||||||
|
src = ./libpath.patch;
|
||||||
|
inherit zlib curl libpng libjpeg libogg libvorbis libtheora freetype;
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
@ -24,28 +25,30 @@ in stdenv.mkDerivation (libs // rec {
|
|||||||
libpng
|
libpng
|
||||||
];
|
];
|
||||||
|
|
||||||
patches = [ ./libpath.patch ];
|
|
||||||
postPatch = ''
|
|
||||||
cd source/source
|
|
||||||
substituteAllInPlace gameshared/q_arch.h
|
|
||||||
'';
|
|
||||||
|
|
||||||
cmakeFlags = [ "-DQFUSION_GAME=Warsow" ];
|
cmakeFlags = [ "-DQFUSION_GAME=Warsow" ];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
cd source/source
|
||||||
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
mkdir -p $out/lib
|
mkdir -p $out/lib
|
||||||
cp -r libs $out/lib/warsow
|
cp -r libs $out/lib/warsow
|
||||||
for i in warsow.* wsw_server.* wswtv_server.*; do
|
for i in warsow.* wsw_server.* wswtv_server.*; do
|
||||||
install -Dm755 "$i" "$out/bin/''${i%.*}"
|
install -Dm755 "$i" "$out/bin/''${i%.*}"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Multiplayer FPS game designed for competitive gaming (engine only)";
|
description = "Multiplayer FPS game designed for competitive gaming (engine only)";
|
||||||
homepage = "http://www.warsow.net";
|
homepage = "http://www.warsow.net";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; [ astsmtl abbradar ];
|
maintainers = with maintainers; [ astsmtl abbradar ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
broken = stdenv.isAarch64;
|
broken = stdenv.isAarch64;
|
||||||
};
|
};
|
||||||
})
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user