summary refs log tree commit diff
path: root/pkgs/games/lbreakout2
diff options
context:
space:
mode:
authorSimon Lackerbauer <simon@lackerbauer.com>2017-06-09 09:21:17 +0200
committerSimon Lackerbauer <simon@lackerbauer.com>2017-06-09 09:25:28 +0200
commit63e967a33a65ab1b207707f135c79741134ceefb (patch)
treea1d283d9b3c034cb646f46c78df436ea9cef3011 /pkgs/games/lbreakout2
parentbcf9af560a86caf88d36257d349099a0786f1fb4 (diff)
downloadnixpkgs-63e967a33a65ab1b207707f135c79741134ceefb.tar
nixpkgs-63e967a33a65ab1b207707f135c79741134ceefb.tar.gz
nixpkgs-63e967a33a65ab1b207707f135c79741134ceefb.tar.bz2
nixpkgs-63e967a33a65ab1b207707f135c79741134ceefb.tar.lz
nixpkgs-63e967a33a65ab1b207707f135c79741134ceefb.tar.xz
nixpkgs-63e967a33a65ab1b207707f135c79741134ceefb.tar.zst
nixpkgs-63e967a33a65ab1b207707f135c79741134ceefb.zip
lbreakout2: init at 2.6.5
Diffstat (limited to 'pkgs/games/lbreakout2')
-rw-r--r--pkgs/games/lbreakout2/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/games/lbreakout2/default.nix b/pkgs/games/lbreakout2/default.nix
new file mode 100644
index 00000000000..68af5bf5857
--- /dev/null
+++ b/pkgs/games/lbreakout2/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, SDL, SDL_mixer, zlib, libpng, gcc }:
+
+stdenv.mkDerivation rec {
+  name = "lbreakout2-${version}";
+  version = "2.6.5";
+  buildInputs = [ SDL SDL_mixer zlib libpng gcc ];
+
+  src = fetchurl {
+    url = "http://downloads.sourceforge.net/lgames/${name}.tar.gz";
+    sha256 = "0vwdlyvh7c4y80q5vp7fyfpzbqk9lq3w8pvavi139njkalbxc14i";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Breakout clone from the LGames series";
+    homepage = http://lgames.sourceforge.net/LBreakout2/;
+    license = licenses.gpl;
+    maintainers = [ maintainers.ciil ];
+    platforms = platforms.linux;
+  };
+}
+