mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
Add Teeworlds, a Worms-like game, if you see what I mean.
svn path=/nixpkgs/trunk/; revision=13762
This commit is contained in:
parent
4d5c788b81
commit
e71dbdbb83
63
pkgs/games/teeworlds/default.nix
Normal file
63
pkgs/games/teeworlds/default.nix
Normal file
@ -0,0 +1,63 @@
|
||||
{ fetchurl, stdenv, unzip, python, alsaLib, libX11, mesa }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "teeworlds-0.4.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.teeworlds.com/files/${name}-src.tar.gz";
|
||||
sha256 = "1k141517wchhw2586m0kkvh65kadnlybpvzrxlb8b098jbg1hr1n";
|
||||
};
|
||||
|
||||
# Note: Teeworlds requires Python 2.x to compile. Python 3.0 will
|
||||
# not work.
|
||||
buildInputs = [ unzip python alsaLib libX11 mesa ];
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace "default.bam" \
|
||||
--replace 'settings.linker.flags = ""' \
|
||||
'settings.linker.flags = "-fstack-protector-all"'
|
||||
'';
|
||||
configurePhase = ''
|
||||
# Fetch and build BAM, the home-made build system.
|
||||
unzip ${fetchurl {
|
||||
url = "http://teeworlds.com/files/bam.zip";
|
||||
sha256 = "0dz9k906skgzc4l15ihlqb1d1hk0s2yajadbq5zs01gxi05xhy6v";
|
||||
}
|
||||
}
|
||||
( cd bam && ./make_unix.sh )
|
||||
|
||||
# Build Teeworlds.
|
||||
./bam/src/bam release
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
ensureDir "$out/share/${name}"
|
||||
cp -rv data "$out/share/${name}"
|
||||
|
||||
ensureDir "$out/bin"
|
||||
cp -v teeworlds "$out/bin/.wrapped-teeworlds"
|
||||
|
||||
cat > "$out/bin/teeworlds" <<EOF
|
||||
#!/bin/sh
|
||||
cd "$out/share/${name}" && exec "$out/bin/.wrapped-teeworlds"
|
||||
EOF
|
||||
chmod +x "$out/bin/teeworlds"
|
||||
|
||||
ensureDir "$out/doc/${name}"
|
||||
cp -v *.txt "$out/doc/${name}"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Teeworlds, a 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 = http://teeworlds.com/;
|
||||
license = "BSD-style, see `license.txt'";
|
||||
};
|
||||
}
|
@ -8521,6 +8521,11 @@ let
|
||||
libvorbis libogg gettext;
|
||||
};
|
||||
|
||||
teeworlds = import ../games/teeworlds {
|
||||
inherit fetchurl stdenv unzip python alsaLib mesa;
|
||||
inherit (xlibs) libX11;
|
||||
};
|
||||
|
||||
/*tpm = import ../games/thePenguinMachine {
|
||||
inherit stdenv fetchurl pil pygame SDL;
|
||||
python24 = python;
|
||||
|
Loading…
Reference in New Issue
Block a user