about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/asc/default.nix
blob: 94a16f60140d3c75f6d00745228d5aac0e6a296d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{ fetchFromGitHub
, lib
, stdenv
, SDL
, SDL_image
, SDL_mixer
, SDL_sound
, libsigcxx
, physfs
, boost
, expat
, freetype
, libjpeg
, wxGTK32
, lua
, perl
, pkg-config
, zlib
, zip
, bzip2
, libpng
, libtiff
, fluidsynth
, libmikmod
, libvorbis
, flac
, libogg
}:

stdenv.mkDerivation rec {
  pname = "asc";
  version = "2.6.3.0";

  src = fetchFromGitHub {
    owner = "ValHaris";
    repo = "asc-hq";
    rev = "fa3bca082a5cea2b35812349f99b877f0113aef0";
    sha256 = "atamYCN2mOqxV6auToTeWdpKuFfC+GLfLdRsfT0ouwQ=";
  };

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [
    SDL
    SDL_image
    SDL_mixer
    SDL_sound
    physfs
    boost
    expat
    freetype
    libjpeg
    wxGTK32
    lua
    perl
    zlib
    zip
    bzip2
    libpng
    libtiff
    fluidsynth
    libmikmod
    flac
    libvorbis
    libogg
    libsigcxx
  ];

  meta = with lib; {
    description = "Turn based strategy game";

    longDescription = ''
      Advanced Strategic Command is a free, turn based strategy game. It is
      designed in the tradition of the Battle Isle series from Bluebyte and is
      currently available for Windows and Linux.
    '';

    homepage = "https://www.asc-hq.org/";

    license = licenses.gpl2Plus;

    maintainers = with maintainers; [ raskin ];
    platforms = platforms.linux;
  };
}