about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/commandergenius/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/commandergenius/default.nix')
-rw-r--r--nixpkgs/pkgs/games/commandergenius/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/games/commandergenius/default.nix b/nixpkgs/pkgs/games/commandergenius/default.nix
new file mode 100644
index 000000000000..4509f8140ce4
--- /dev/null
+++ b/nixpkgs/pkgs/games/commandergenius/default.nix
@@ -0,0 +1,44 @@
+{ stdenv, fetchFromGitLab, SDL2, SDL2_image, pkgconfig
+, libvorbis, libGL, boost, cmake, zlib, curl, SDL2_mixer, python3
+}:
+
+stdenv.mkDerivation rec {
+  name = "commandergenius-${version}";
+  version = "2.3.2";
+
+  src = fetchFromGitLab {
+    owner = "Dringgstein";
+    repo = "Commander-Genius";
+    rev = "v${version}";
+    sha256 = "1a8as56ycbq8csnssd5wqv2jand5c9yskld6prh3dn9gy96jbvgj";
+  };
+
+  buildInputs = [ SDL2 SDL2_image SDL2_mixer libGL boost libvorbis zlib curl python3 ];
+
+  preConfigure = ''
+    export cmakeFlags="$cmakeFlags -DCMAKE_INSTALL_PREFIX=$out -DSHAREDIR=$out/share"
+    export makeFlags="$makeFlags DESTDIR=$(out)"
+  '';
+
+  nativeBuildInputs = [ cmake pkgconfig ];
+
+  postPatch = ''
+    NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(sdl2-config --cflags)"
+    sed -i 's,APPDIR games,APPDIR bin,' src/install.cmake
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Modern Interpreter for the Commander Keen Games";
+    longDescription = ''
+      Commander Genius is an open-source clone of
+      Commander Keen which allows you to play
+      the games, and some of the mods
+      made for it. All of the original data files
+      are required to do so
+    '';
+    homepage = https://github.com/gerstrong/Commander-Genius;
+    maintainers = with maintainers; [ hce ];
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+  };
+}