mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
593e11fd94
According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
85 lines
2.7 KiB
Nix
85 lines
2.7 KiB
Nix
{ stdenv, lib, fetchhg, cmake, pkgconfig, makeWrapper, callPackage
|
|
, soundfont-fluid, SDL, libGL, glew, bzip2, zlib, libjpeg, fluidsynth, openssl, gtk2, python3, libgme
|
|
, serverOnly ? false
|
|
}:
|
|
|
|
let
|
|
suffix = lib.optionalString serverOnly "-server";
|
|
fmod = callPackage ./fmod.nix { };
|
|
sqlite = callPackage ./sqlite.nix { };
|
|
clientLibPath = lib.makeLibraryPath [ fluidsynth ];
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "zandronum${suffix}";
|
|
version = "3.0.1";
|
|
|
|
src = fetchhg {
|
|
url = "https://bitbucket.org/Torr_Samaho/zandronum-stable";
|
|
rev = "ZA_${version}";
|
|
sha256 = "16v5b6wfrmabs3ky6isbfhlrqdjrr1pvfxlxwk0im02kcpxxw9qw";
|
|
};
|
|
|
|
# zandronum tries to download sqlite now when running cmake, don't let it
|
|
|
|
# it also needs the current mercurial revision info embedded in gitinfo.h
|
|
# otherwise, the client will fail to connect to servers because the
|
|
# protocol version doesn't match.
|
|
|
|
patches = [ ./zan_configure_impurity.patch ./add_gitinfo.patch ./dont_update_gitinfo.patch ];
|
|
|
|
# I have no idea why would SDL and libjpeg be needed for the server part!
|
|
# But they are.
|
|
buildInputs = [ openssl bzip2 zlib SDL libjpeg sqlite libgme ]
|
|
++ lib.optionals (!serverOnly) [ libGL glew fmod fluidsynth gtk2 ];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig makeWrapper python3 ];
|
|
|
|
preConfigure = ''
|
|
ln -s ${sqlite}/* sqlite/
|
|
sed -ie 's| restrict| _restrict|g' dumb/include/dumb.h \
|
|
dumb/src/it/*.c
|
|
'' + lib.optionalString (!serverOnly) ''
|
|
sed -i \
|
|
-e "s@/usr/share/sounds/sf2/@${soundfont-fluid}/share/soundfonts/@g" \
|
|
-e "s@FluidR3_GM.sf2@FluidR3_GM2-2.sf2@g" \
|
|
src/sound/music_fluidsynth_mididevice.cpp
|
|
'';
|
|
|
|
cmakeFlags =
|
|
[ "-DFORCE_INTERNAL_GME=OFF" ]
|
|
++ (if serverOnly
|
|
then [ "-DSERVERONLY=ON" ]
|
|
else [ "-DFMOD_LIBRARY=${fmod}/lib/libfmodex.so" ]);
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/lib/zandronum
|
|
cp zandronum${suffix} \
|
|
*.pk3 \
|
|
${lib.optionalString (!serverOnly) "liboutput_sdl.so"} \
|
|
$out/lib/zandronum
|
|
makeWrapper $out/lib/zandronum/zandronum${suffix} $out/bin/zandronum${suffix}
|
|
'';
|
|
|
|
postFixup = lib.optionalString (!serverOnly) ''
|
|
patchelf --set-rpath $(patchelf --print-rpath $out/lib/zandronum/zandronum):$out/lib/zandronum:${clientLibPath} \
|
|
$out/lib/zandronum/zandronum
|
|
'';
|
|
|
|
passthru = {
|
|
inherit fmod sqlite;
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://zandronum.com/;
|
|
description = "Multiplayer oriented port, based off Skulltag, for Doom and Doom II by id Software";
|
|
maintainers = with maintainers; [ lassulus MP2E ];
|
|
license = licenses.unfreeRedistributable;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|