about summary refs log tree commit diff
path: root/pkgs/games/ja2-stracciatella
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/ja2-stracciatella
parent31568dc384f5cd3c1b09b55e559114869791dfbf (diff)
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/ja2-stracciatella')
-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 0000000000000..682021eee6998
--- /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/";
+  };
+}