summary refs log tree commit diff
path: root/pkgs/development/libraries/libtcod
diff options
context:
space:
mode:
authorSven Keidel <svenkeidel@googlemail.com>2016-04-24 20:42:53 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2016-05-07 19:00:30 +0200
commit98bef7e0bde3b7b9cc4deff282c8863fc5b504a5 (patch)
treebc991f09ade20812cac36a03a18cd519f7ded399 /pkgs/development/libraries/libtcod
parentcac498b522a6e968dd51d8961906892f7cdebfec (diff)
downloadnixpkgs-98bef7e0bde3b7b9cc4deff282c8863fc5b504a5.tar
nixpkgs-98bef7e0bde3b7b9cc4deff282c8863fc5b504a5.tar.gz
nixpkgs-98bef7e0bde3b7b9cc4deff282c8863fc5b504a5.tar.bz2
nixpkgs-98bef7e0bde3b7b9cc4deff282c8863fc5b504a5.tar.lz
nixpkgs-98bef7e0bde3b7b9cc4deff282c8863fc5b504a5.tar.xz
nixpkgs-98bef7e0bde3b7b9cc4deff282c8863fc5b504a5.tar.zst
nixpkgs-98bef7e0bde3b7b9cc4deff282c8863fc5b504a5.zip
brogue: init at 1.7.4
with fixups by joachifm:
- Correct license (AGPL-3)
- Removed redundant build input
- Cleanup description

Closes #15244
Diffstat (limited to 'pkgs/development/libraries/libtcod')
-rw-r--r--pkgs/development/libraries/libtcod/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libtcod/default.nix b/pkgs/development/libraries/libtcod/default.nix
new file mode 100644
index 00000000000..959c544876f
--- /dev/null
+++ b/pkgs/development/libraries/libtcod/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchFromBitbucket, cmake, SDL, mesa, upx }:
+
+stdenv.mkDerivation rec {
+
+  name = "libtcod-${version}";
+  version = "1.5.1";
+
+  src = fetchFromBitbucket {
+    owner = "libtcod";
+    repo = "libtcod";
+    rev = "1.5.1";
+    sha256 = "1ibsnmnim712npxkqklc5ibnd32hgsx2yzyfzzc5fis5mhinbl63";
+  };
+
+  prePatch = ''
+    sed -i CMakeLists.txt \
+      -e "s,SET(ROOT_DIR.*,SET(ROOT_DIR $out),g" \
+      -e "s,SET(INSTALL_DIR.*,SET(INSTALL_DIR $out),g"
+    echo 'INSTALL(DIRECTORY include DESTINATION .)' >> CMakeLists.txt
+  '';
+
+  cmakeFlags="-DLIBTCOD_SAMPLES=OFF";
+
+  buildInputs = [ cmake SDL mesa upx ];
+
+  meta = {
+    description = "API for roguelike games";
+    homepage = http://roguecentral.org/doryen/libtcod/;
+    license = stdenv.lib.licenses.bsd3;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.skeidel ];
+  };
+}