about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/beret/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/beret/default.nix')
-rw-r--r--nixpkgs/pkgs/games/beret/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/games/beret/default.nix b/nixpkgs/pkgs/games/beret/default.nix
new file mode 100644
index 000000000000..81bdbed46e94
--- /dev/null
+++ b/nixpkgs/pkgs/games/beret/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, fetchurl, SDL, SDL_image, SDL_ttf, SDL_mixer }:
+
+stdenv.mkDerivation {
+  name = "beret-1.2.0";
+
+  buildInputs = [ SDL SDL_image SDL_ttf SDL_mixer ];
+
+  NIX_CFLAGS_COMPILE = "-I${SDL.dev}/include/SDL";
+  NIX_CFLAGS_LINK = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
+  NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin
+    "-framework CoreFoundation -framework OpenGL -framework Cocoa";
+
+  patches = [ ./use-home-dir.patch ];
+
+  postPatch = ''
+    sed -i 's@RESOURCE_PATH ""@RESOURCE_PATH "'$out'/share/"@' game.c
+  '';
+
+  src = fetchurl {
+    url = https://gitorious.org/beret/beret/archive-tarball/ae029777;
+    name = "beret-1.2.0.tar.gz";
+    sha256 = "1rx9z72id1810fgv8mizk8qxwd1kh5xi07fdhmjc62mh3fn38szc";
+  };
+
+  installPhase = ''
+    mkdir -p $out/bin
+    install -v -m755 beret $out/bin
+    mkdir -p $out/share
+    cp -av tahoma.ttf images music rooms sfx $out/share
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A 2D puzzle-platformer game about a scientist with telekinetic abilities";
+    homepage    = http://kiwisauce.com/beret/;
+    license     = licenses.lgpl2;
+    maintainers = with maintainers; [ lovek323 ];
+    platforms   = platforms.all;
+    broken = true; # source won't download, and no replacement is visible
+  };
+}
+