From 98bef7e0bde3b7b9cc4deff282c8863fc5b504a5 Mon Sep 17 00:00:00 2001 From: Sven Keidel Date: Sun, 24 Apr 2016 20:42:53 +0200 Subject: brogue: init at 1.7.4 with fixups by joachifm: - Correct license (AGPL-3) - Removed redundant build input - Cleanup description Closes #15244 --- pkgs/games/brogue/default.nix | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 pkgs/games/brogue/default.nix (limited to 'pkgs/games/brogue') diff --git a/pkgs/games/brogue/default.nix b/pkgs/games/brogue/default.nix new file mode 100644 index 00000000000..134e94d1fc2 --- /dev/null +++ b/pkgs/games/brogue/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchurl, SDL, ncurses, libtcod, binutils }: + +stdenv.mkDerivation rec { + name = "brogue-${version}"; + version = "1.7.4"; + + src = fetchurl { + url = "https://sites.google.com/site/broguegame/brogue-${version}-linux-amd64.tbz2"; + sha256 = "1lygf17hm7wqlp0jppaz8dn9a9ksmxz12vw7jyfavvqpwdgz79gb"; + }; + + prePatch = '' + sed -i Makefile -e 's,LIBTCODDIR=.*,LIBTCODDIR=${libtcod},g' \ + -e 's,sdl-config,${SDL}/bin/sdl-config,g' + sed -i src/platform/tcod-platform.c -e "s,fonts/font,$out/share/brogue/fonts/font,g" + make clean + rm -rf src/libtcod* + ''; + + buildInputs = [ SDL ncurses libtcod ]; + + installPhase = '' + install -m 555 -D bin/brogue $out/bin/brogue + mkdir -p $out/share/brogue + cp -r bin/fonts $out/share/brogue/ + ''; + + meta = with stdenv.lib; { + description = "A roguelike game"; + homepage = https://sites.google.com/site/broguegame/; + license = licenses.agpl3; + maintainers = [ maintainers.skeidel ]; + platforms = [ "x86_64-linux" ]; + }; +} -- cgit 1.4.1