From 2d66489e53fe432ca016b8af73a330e1ccc5e152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 8 Jul 2010 14:08:09 +0000 Subject: [PATCH] Adding the gltron expression I forgot to commit yesterday. svn path=/nixpkgs/trunk/; revision=22531 --- pkgs/games/gltron/default.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pkgs/games/gltron/default.nix diff --git a/pkgs/games/gltron/default.nix b/pkgs/games/gltron/default.nix new file mode 100644 index 00000000000..b58654f1f42 --- /dev/null +++ b/pkgs/games/gltron/default.nix @@ -0,0 +1,24 @@ +{stdenv, fetchurl, SDL, mesa, zlib, libpng, libvorbis, libmikmod, SDL_sound } : + +stdenv.mkDerivation rec { + name = "gltron-0.70"; + src = fetchurl { + url = "mirror://sourceforge/gltron/${name}-source.tar.gz"; + sha256 = "e0c8ebb41a18a1f8d7302a9c2cb466f5b1dd63e9a9966c769075e6b6bdad8bb0"; + }; + + patches = [ ./gentoo-prototypes.patch ]; + + # The build fails, unless we disable the default -Wall -Werror + configureFlags = "--disable-warn"; + + buildInputs = [ SDL mesa zlib libpng libvorbis libmikmod SDL_sound ]; + + meta = { + homepage = http://www.gltron.org/; + description = "Game based on the movie Tron"; + license = "GPLv2+"; + maintainers = with stdenv.lib.maintainers; [viric]; + platforms = with stdenv.lib.platforms; linux; + }; +}