2018-12-31 03:40:47 +00:00
|
|
|
{ stdenv, fetchurl, xorgproto, libX11, libXrender
|
2018-12-20 17:02:20 +00:00
|
|
|
, gmp, libjpeg, libpng
|
2015-12-29 12:55:54 +00:00
|
|
|
, expat, gettext, perl, guile
|
2015-09-15 04:27:19 +00:00
|
|
|
, SDL, SDL_image, SDL_mixer, SDL_ttf
|
2018-09-20 22:19:01 +00:00
|
|
|
, curl, sqlite, libtool, readline
|
2015-12-29 12:55:54 +00:00
|
|
|
, libogg, libvorbis, libcaca, csound, cunit } :
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "liquidwar6";
|
2015-12-29 12:55:54 +00:00
|
|
|
version = "0.6.3902";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://gnu/liquidwar6/${pname}-${version}.tar.gz";
|
2015-12-29 12:55:54 +00:00
|
|
|
sha256 = "1976nnl83d8wspjhb5d5ivdvdxgb8lp34wp54jal60z4zad581fn";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-12-31 03:40:47 +00:00
|
|
|
xorgproto libX11 gmp guile
|
2018-12-20 17:02:20 +00:00
|
|
|
libjpeg libpng
|
2009-12-16 16:06:30 +00:00
|
|
|
expat gettext perl
|
|
|
|
SDL SDL_image SDL_mixer SDL_ttf
|
2015-09-15 04:27:19 +00:00
|
|
|
curl sqlite
|
2014-08-03 11:59:13 +00:00
|
|
|
libogg libvorbis csound
|
|
|
|
libXrender libcaca cunit
|
2018-09-20 22:19:01 +00:00
|
|
|
libtool readline
|
2009-12-16 16:06:30 +00:00
|
|
|
];
|
2012-02-16 12:22:05 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-12 03:58:23 +00:00
|
|
|
|
2018-12-20 17:01:46 +00:00
|
|
|
NIX_CFLAGS_COMPILE =
|
|
|
|
"-Wno-error=deprecated-declarations" +
|
|
|
|
# Avoid GL_GLEXT_VERSION double definition
|
|
|
|
" -DNO_SDL_GLEXT"
|
|
|
|
;
|
2016-08-27 21:55:58 +00:00
|
|
|
|
2015-12-29 12:55:54 +00:00
|
|
|
# To avoid problems finding SDL_types.h.
|
2015-12-31 08:47:26 +00:00
|
|
|
configureFlags = [ "CFLAGS=-I${SDL.dev}/include/SDL" ];
|
2009-12-16 16:06:30 +00:00
|
|
|
|
2015-12-29 12:55:54 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-12-16 16:06:30 +00:00
|
|
|
description = "Quick tactics game";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.gnu.org/software/liquidwar6/";
|
2015-12-29 12:55:54 +00:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2009-12-16 16:06:30 +00:00
|
|
|
};
|
|
|
|
}
|