summary refs log tree commit diff
diff options
context:
space:
mode:
authorElmo Todurov <elmo.todurov@eesti.ee>2019-07-26 22:45:43 +0300
committerElmo Todurov <elmo.todurov@eesti.ee>2019-09-15 18:59:06 +0300
commitd3f6aef265a3e870c840820713392417c1b6c1ec (patch)
tree9eb8f09f178fb76996183f20a85141abc10ffccd
parent7cc7645fb0f9c6d6432ba6d72cc4b2774f24e1af (diff)
downloadnixpkgs-d3f6aef265a3e870c840820713392417c1b6c1ec.tar
nixpkgs-d3f6aef265a3e870c840820713392417c1b6c1ec.tar.gz
nixpkgs-d3f6aef265a3e870c840820713392417c1b6c1ec.tar.bz2
nixpkgs-d3f6aef265a3e870c840820713392417c1b6c1ec.tar.lz
nixpkgs-d3f6aef265a3e870c840820713392417c1b6c1ec.tar.xz
nixpkgs-d3f6aef265a3e870c840820713392417c1b6c1ec.tar.zst
nixpkgs-d3f6aef265a3e870c840820713392417c1b6c1ec.zip
tome2: init at 2.4
-rw-r--r--pkgs/games/tome2/default.nix50
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 52 insertions, 0 deletions
diff --git a/pkgs/games/tome2/default.nix b/pkgs/games/tome2/default.nix
new file mode 100644
index 00000000000..a632e523aaa
--- /dev/null
+++ b/pkgs/games/tome2/default.nix
@@ -0,0 +1,50 @@
+{ stdenv, fetchFromGitHub, makeDesktopItem, ncurses, libX11, boost, cmake }:
+
+let
+  pname = "tome2";
+  description = "A dungeon crawler similar to Angband, based on the works of Tolkien";
+
+  desktopItem = makeDesktopItem {
+    desktopName = pname;
+    name = pname;
+    exec = "${pname}-x11";
+    icon = pname;
+    terminal = "False";
+    comment = description;
+    type = "Application";
+    categories = "Game;RolePlaying;";
+    genericName = pname;
+  };
+
+in stdenv.mkDerivation {
+  inherit pname;
+  version = "2.4";
+
+  src = fetchFromGitHub {
+    owner = "tome2";
+    repo = "tome2";
+    rev = "4e6a906c80ff07b75a6acf4ff585b47303805e46";
+    sha256 = "06bddj55y673d7bnzblk8n01z32l6k2rad3bpzr8dmw464hx4wwf";
+  };
+
+  buildInputs = [ ncurses libX11 boost ];
+
+  nativeBuildInputs = [ cmake ];
+
+  cmakeFlags = [
+    "-DSYSTEM_INSTALL=ON"
+  ];
+
+  postInstall = ''
+    mkdir -p $out/share/applications
+    cp ${desktopItem}/share/applications/*.desktop $out/share/applications
+  '';
+
+  meta = with stdenv.lib; {
+    inherit description;
+    license = licenses.unfree;
+    maintainers = with maintainers; [ cizra ];
+    platforms = platforms.all;
+    homepage = "https://github.com/tome2/tome2";
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index db16c9d5143..d592997ec64 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -22401,6 +22401,8 @@ in
 
   tinyfugue = callPackage ../games/tinyfugue { };
 
+  tome2 = callPackage ../games/tome2 { };
+
   tome4 = callPackage ../games/tome4 { };
 
   toppler = callPackage ../games/toppler { };