nixpkgs/pkgs/games/pioneer/default.nix
R. RyanTM f45601d7d6 pioneer: 20190203 -> 20191009
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pioneer/versions
2019-10-22 22:44:00 -07:00

37 lines
927 B
Nix

{ fetchFromGitHub, stdenv, cmake, pkgconfig, curl, libsigcxx, SDL2
, SDL2_image, freetype, libvorbis, libpng, assimp, libGLU_combined
, glew
}:
stdenv.mkDerivation rec {
pname = "pioneer";
version = "20191009";
src = fetchFromGitHub{
owner = "pioneerspacesim";
repo = "pioneer";
rev = version;
sha256 = "1ll6pv1931z29kz1zvhnc6mgvjxz30q25lvb00qrsvh236nvll7n";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
curl libsigcxx SDL2 SDL2_image freetype libvorbis libpng
assimp libGLU_combined glew
];
preConfigure = ''
export PIONEER_DATA_DIR="$out/share/pioneer/data";
'';
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" ];
};
}