summary refs log tree commit diff
path: root/pkgs/games/pioneer/default.nix
blob: e6989908c65f3ecc41c487d78e998efabf18fe17 (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
{ fetchFromGitHub, stdenv, autoconf, automake, pkgconfig
, curl, libsigcxx, SDL2, SDL2_image, freetype, libvorbis, libpng, assimp, libGLU_combined
}:

stdenv.mkDerivation rec {
  name = "pioneer-${version}";
  version = "20171001";

  src = fetchFromGitHub{
    owner = "pioneerspacesim";
    repo = "pioneer";
    rev = version;
    sha256 = "0yxw1zdvidrwc28vxfi3qpx2nq2dix2d6ylwgzq9ph8kgwv9fl5n";
  };

  nativeBuildInputs = [ autoconf automake pkgconfig ];

  buildInputs = [ curl libsigcxx SDL2 SDL2_image freetype libvorbis libpng assimp libGLU_combined ];

  NIX_CFLAGS_COMPILE = [
    "-I${SDL2}/include/SDL2"
  ];

  preConfigure = ''
     export PIONEER_DATA_DIR="$out/share/pioneer/data";
    ./bootstrap
  '';

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "A space adventure game set in the Milky Way galaxy at the turn of the 31st century";
    homepage = https://pioneerspacesim.net;
    license = with licenses; [
        gpl3 cc-by-sa-30
    ];
    platforms = [ "x86_64-linux" "i686-linux" ];
  };
}