summary refs log tree commit diff
path: root/pkgs/games/ivan/default.nix
diff options
context:
space:
mode:
authorGrigory Chereshnev <35115302+nonfreeblob@users.noreply.github.com>2018-05-27 22:23:39 +0300
committerGrigory Chereshnev <35115302+nonfreeblob@users.noreply.github.com>2018-05-27 22:23:39 +0300
commit3d9cd5d0c58ee35e1ef327f06b2f114e045569b6 (patch)
tree1678a2f9a4b281d9d24c7926ccc7955eb564d13d /pkgs/games/ivan/default.nix
parentd90eea8cff60490249a614813a76ddd8afa517f8 (diff)
downloadnixpkgs-3d9cd5d0c58ee35e1ef327f06b2f114e045569b6.tar
nixpkgs-3d9cd5d0c58ee35e1ef327f06b2f114e045569b6.tar.gz
nixpkgs-3d9cd5d0c58ee35e1ef327f06b2f114e045569b6.tar.bz2
nixpkgs-3d9cd5d0c58ee35e1ef327f06b2f114e045569b6.tar.lz
nixpkgs-3d9cd5d0c58ee35e1ef327f06b2f114e045569b6.tar.xz
nixpkgs-3d9cd5d0c58ee35e1ef327f06b2f114e045569b6.tar.zst
nixpkgs-3d9cd5d0c58ee35e1ef327f06b2f114e045569b6.zip
ivan: init at 052
Diffstat (limited to 'pkgs/games/ivan/default.nix')
-rw-r--r--pkgs/games/ivan/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/games/ivan/default.nix b/pkgs/games/ivan/default.nix
new file mode 100644
index 00000000000..50b9f03d4bc
--- /dev/null
+++ b/pkgs/games/ivan/default.nix
@@ -0,0 +1,44 @@
+{stdenv, fetchFromGitHub, libpng, cmake, SDL2, SDL2_mixer, pkgconfig, pcre}:
+
+stdenv.mkDerivation rec {
+
+  name = "ivan-${version}";
+  version = "052";
+
+  src = fetchFromGitHub {
+    owner = "Attnam";
+    repo = "ivan";
+    rev = "v${version}";
+    sha256 = "1vvwb33jw4ppwsqlvaxq3b8npdzh9j9jfangyzszp5sfnnd7fj5b";
+  };
+
+  buildInputs = [SDL2 SDL2_mixer libpng pcre];
+
+  nativeBuildInputs = [cmake pkgconfig];
+
+  hardeningDisable = ["all"];
+  
+  # To store bone and high score files in ~/.ivan of the current user
+  patches = [./homedir.patch];
+
+  # Enable wizard mode
+  cmakeFlags = ["-DCMAKE_CXX_FLAGS=-DWIZARD"];
+
+  # Help CMake find SDL_mixer.h
+  NIX_CFLAGS_COMPILE = "-I${SDL2_mixer}/include/SDL2";
+
+  meta = with stdenv.lib; {
+    description = "Graphical roguelike game";
+    longDescription = ''
+      Iter Vehemens ad Necem (IVAN) is a graphical roguelike game, which currently
+      runs in Windows, DOS, Linux, and OS X. It features advanced bodypart and
+      material handling, multi-colored lighting and, above all, deep gameplay.
+
+      This is a fan continuation of IVAN by members of Attnam.com
+    '';
+    homepage = https://attnam.com/;
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [nonfreeblob];
+  };
+}