liquidwar5: init at 5.6.4
This commit is contained in:
parent
61d8e875c0
commit
6b527ec517
24
pkgs/games/liquidwar/5.nix
Normal file
24
pkgs/games/liquidwar/5.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchurl, allegro }:
|
||||
stdenv.mkDerivation rec {
|
||||
version = "5.6.4";
|
||||
name = "liquidwar5-${version}";
|
||||
src = fetchurl {
|
||||
url = "http://download.savannah.gnu.org/releases/liquidwar/liquidwar-${version}.tar.gz";
|
||||
sha256 = "18wkbfzp07yckg05b5gjy67rw06z9lxp0hzg0zwj7rz8i12jxi9j";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
allegro
|
||||
];
|
||||
|
||||
configureFlags =
|
||||
(stdenv.lib.optional stdenv.isx86_64 "--disable-asm")
|
||||
;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = ''The classic version of a quick tactics game LiquidWar'';
|
||||
maintainers = [ maintainers.raskin ];
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -15810,6 +15810,9 @@ in
|
||||
guile = guile_1_8;
|
||||
};
|
||||
|
||||
liquidwar5 = callPackage ../games/liquidwar/5.nix {
|
||||
};
|
||||
|
||||
macopix = callPackage ../games/macopix {
|
||||
gtk = gtk2;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user