ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / games / asc / default.nix
blobf351040ff883d054f51cc0b45dd1c2ddbf3b16e8
1 { fetchurl, lib, stdenv, SDL, SDL_image, SDL_mixer, SDL_sound, libsigcxx, physfs
2 , boost, expat, freetype, libjpeg, wxGTK32, lua, perl, pkg-config, zlib, zip, bzip2
3 , libpng, libtiff, fluidsynth, libmikmod, libvorbis, flac, libogg }:
5 stdenv.mkDerivation rec {
6   pname = "asc";
7   version = "2.6.0.0";
9   src = fetchurl {
10     url = "mirror://sourceforge/asc-hq/asc-${version}.tar.bz2";
11     sha256 = "1fybasb6srqfg6pqbvh0s0vvzjq9r0n6aq0z44hs7n68kmaam775";
12   };
14   configureFlags = [ "--disable-paragui" "--disable-paraguitest" ];
16   NIX_CFLAGS_COMPILE = "-fpermissive -Wno-error=narrowing -std=c++11"; # I'm too lazy to catch all gcc47-related problems
17   hardeningDisable = [ "format" ];
19   nativeBuildInputs = [ pkg-config ];
21   buildInputs = [
22     SDL SDL_image SDL_mixer SDL_sound libsigcxx physfs boost expat
23     freetype libjpeg wxGTK32 lua perl zlib zip bzip2 libpng
24     libtiff fluidsynth libmikmod flac libvorbis libogg
25   ];
27   meta = with lib; {
28     description = "Turn based strategy game";
30     longDescription = ''
31       Advanced Strategic Command is a free, turn based strategy game. It is
32       designed in the tradition of the Battle Isle series from Bluebyte and is
33       currently available for Windows and Linux.
34     '';
36     homepage = "https://www.asc-hq.org/";
38     license = licenses.gpl2Plus;
40     maintainers = with maintainers; [ raskin ];
41     platforms = platforms.linux;
42   };