mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Add opentyrian game.
svn path=/nixpkgs/trunk/; revision=33797
This commit is contained in:
parent
8a67709183
commit
6a9ac1f016
37
pkgs/games/opentyrian/default.nix
Normal file
37
pkgs/games/opentyrian/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{stdenv, fetchhg, fetchurl, unzip, SDL, SDL_net}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "opentyrian-${version}";
|
||||
version = "0.0.955";
|
||||
|
||||
src = fetchhg {
|
||||
url = "https://opentyrian.googlecode.com/hg/";
|
||||
tag = "13ef8ce47362";
|
||||
md5 = "95c8f9e7ff3d4207f1c692c7cec6c9b0";
|
||||
};
|
||||
|
||||
data = fetchurl {
|
||||
url = http://sites.google.com/a/camanis.net/opentyrian/tyrian/tyrian21.zip;
|
||||
md5 = "2a3b206a6de25ed4b771af073f8ca904";
|
||||
};
|
||||
|
||||
buildInputs = [SDL SDL_net unzip];
|
||||
|
||||
patchPhase = "
|
||||
substituteInPlace src/file.c --replace /usr/share $out/share
|
||||
";
|
||||
buildPhase = "make release";
|
||||
installPhase = "
|
||||
ensureDir $out/bin
|
||||
cp ./opentyrian $out/bin
|
||||
ensureDir $out/share/opentyrian/data
|
||||
unzip -j $data -d $out/share/opentyrian/data
|
||||
";
|
||||
|
||||
meta = {
|
||||
description = ''OpenTyrian is an open source port of the game "Tyrian".'';
|
||||
homepage = https://opentyrian.googlecode.com/;
|
||||
# This does not account of Tyrian data.
|
||||
# license = stdenv.lib.licenses.gpl2;
|
||||
};
|
||||
}
|
|
@ -7842,6 +7842,8 @@ let
|
|||
zlib = zlibStatic;
|
||||
};
|
||||
|
||||
opentyrian = callPackage ../games/opentyrian { };
|
||||
|
||||
pioneers = callPackage ../games/pioneers { };
|
||||
|
||||
pong3d = callPackage ../games/pong3d { };
|
||||
|
|
Loading…
Reference in a new issue