about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/liquidwar/5.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/liquidwar/5.nix')
-rw-r--r--nixpkgs/pkgs/games/liquidwar/5.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/games/liquidwar/5.nix b/nixpkgs/pkgs/games/liquidwar/5.nix
new file mode 100644
index 000000000000..d748c96da242
--- /dev/null
+++ b/nixpkgs/pkgs/games/liquidwar/5.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, allegro }:
+stdenv.mkDerivation rec {
+  version = "5.6.4";
+  name = "liquidwar5-${version}";
+  src = fetchurl {
+    url = "https://download.savannah.gnu.org/releases/liquidwar/liquidwar-${version}.tar.gz";
+    sha256 = "18wkbfzp07yckg05b5gjy67rw06z9lxp0hzg0zwj7rz8i12jxi9j";
+  };
+
+  buildInputs = [ allegro ];
+
+  configureFlags = stdenv.lib.optional stdenv.isx86_64 "--disable-asm";
+
+  hardeningDisable = [ "format" ];
+
+  meta = with stdenv.lib; {
+    description = ''The classic version of a quick tactics game LiquidWar'';
+    maintainers = [ maintainers.raskin ];
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+  };
+}