mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
70 lines
1.9 KiB
Nix
70 lines
1.9 KiB
Nix
{ fetchurl, stdenv, makeWrapper, python, alsaLib
|
|
, libX11, libGLU, SDL, lua5, zlib, bam, freetype
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "teeworlds-0.6.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://downloads.teeworlds.com/teeworlds-0.6.4-src.tar.gz";
|
|
sha256 = "1qlqzp4wqh1vnip081lbsjnx5jj5m5y4msrcm8glbd80pfgd2qf2";
|
|
};
|
|
|
|
# we always want to use system libs instead of these
|
|
postPatch = "rm -r other/{freetype,sdl}/{include,lib32,lib64}";
|
|
|
|
buildInputs = [
|
|
python makeWrapper alsaLib libX11 libGLU SDL lua5 zlib bam freetype
|
|
];
|
|
|
|
buildPhase = ''
|
|
bam -a -v release
|
|
'';
|
|
|
|
installPhase = ''
|
|
# Copy the graphics, sounds, etc.
|
|
mkdir -p "$out/share/${name}"
|
|
cp -rv data other/icons "$out/share/${name}"
|
|
|
|
# Copy the executables (client, server, etc.).
|
|
mkdir -p "$out/bin"
|
|
executables=""
|
|
for file in *
|
|
do
|
|
if [ -f "$file" ] && [ -x "$file" ]
|
|
then
|
|
executables="$file $executables"
|
|
fi
|
|
done
|
|
cp -v $executables "$out/bin"
|
|
|
|
# Make sure the programs are executed from the right directory so
|
|
# that they can access the graphics and sounds.
|
|
for program in $executables
|
|
do
|
|
wrapProgram $out/bin/$program \
|
|
--run "cd $out/share/${name}"
|
|
done
|
|
|
|
# Copy the documentation.
|
|
mkdir -p "$out/doc/${name}"
|
|
cp -v *.txt "$out/doc/${name}"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Retro multiplayer shooter game";
|
|
|
|
longDescription = ''
|
|
Teeworlds is a free online multiplayer game, available for all
|
|
major operating systems. Battle with up to 12 players in a
|
|
variety of game modes, including Team Deathmatch and Capture The
|
|
Flag. You can even design your own maps!
|
|
'';
|
|
|
|
homepage = https://teeworlds.com/;
|
|
license = "BSD-style, see `license.txt'";
|
|
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|