about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorHerwig Hochleitner <herwig@bendlas.net>2017-02-15 04:00:28 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2017-02-26 11:45:15 +0100
commit189e7add9ba012e2eee268c9b12595d852f7fd2b (patch)
tree0a4788e1b7c7b60de2101a67290ae929a6e82bc3 /pkgs/games
parent31568dc384f5cd3c1b09b55e559114869791dfbf (diff)
downloadnixlib-189e7add9ba012e2eee268c9b12595d852f7fd2b.tar
nixlib-189e7add9ba012e2eee268c9b12595d852f7fd2b.tar.gz
nixlib-189e7add9ba012e2eee268c9b12595d852f7fd2b.tar.bz2
nixlib-189e7add9ba012e2eee268c9b12595d852f7fd2b.tar.lz
nixlib-189e7add9ba012e2eee268c9b12595d852f7fd2b.tar.xz
nixlib-189e7add9ba012e2eee268c9b12595d852f7fd2b.tar.zst
nixlib-189e7add9ba012e2eee268c9b12595d852f7fd2b.zip
ja2-stracciatella: init 0.15.1
This is the open-source version of the venerable Jagged Alliance 2.

Stracciatella means almost vanilla. This version is only changed for
fixes, stability improvements and to host mods.

The original data files are non-free and have to be provided by the user.
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/ja2-stracciatella/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/games/ja2-stracciatella/default.nix b/pkgs/games/ja2-stracciatella/default.nix
new file mode 100644
index 000000000000..682021eee699
--- /dev/null
+++ b/pkgs/games/ja2-stracciatella/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchFromGitHub, SDL }:
+
+stdenv.mkDerivation rec {
+  version = "0.15.1";
+  name = "ja2-stracciatella-${version}";
+  src = fetchFromGitHub {
+    owner = "ja2-stracciatella";
+    repo = "ja2-stracciatella";
+    rev = "v${version}";
+    sha256 = "0r7j6k7412b3qfb1rnh80s55zhnriw0v03zn5bp3spcqjxh4xhv1";
+  };
+  enableParallelBuilding = true;
+  buildInputs = [ SDL ];
+  meta = {
+    description = "Jagged Alliance 2, with community fixes";
+    license = "SFI Source Code license agreement";
+    homepage = "https://ja2-stracciatella.github.io/";
+  };
+}