mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
commit
c983078735
42
pkgs/games/pioneer/default.nix
Normal file
42
pkgs/games/pioneer/default.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{ fetchFromGitHub, stdenv, automake, curl, libsigcxx, SDL2
|
||||
, SDL2_image, freetype, libvorbis, libpng, assimp, mesa
|
||||
, autoconf, pkgconfig }:
|
||||
|
||||
let
|
||||
version = "20160116";
|
||||
checksum = "07w5yin2xhb0fdlj1aipi64yx6vnr1siahsy0bxvzi06d73ffj6r";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pioneer-${version}";
|
||||
|
||||
src = fetchFromGitHub{
|
||||
owner = "pioneerspacesim";
|
||||
repo = "pioneer";
|
||||
rev = version;
|
||||
sha256 = checksum;
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
automake curl libsigcxx SDL2 SDL2_image freetype libvorbis
|
||||
libpng assimp mesa autoconf pkgconfig
|
||||
];
|
||||
|
||||
NIX_CFLAGS_COMPILE = [
|
||||
"-I${SDL2}/include/SDL2"
|
||||
];
|
||||
|
||||
|
||||
preConfigure = ''
|
||||
export PIONEER_DATA_DIR="$out/share/pioneer/data";
|
||||
./bootstrap
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Pioneer is a space adventure game set in the Milky Way galaxy at the turn of the 31st century.";
|
||||
homepage = "http://pioneerspacesim.net";
|
||||
license = with licenses; [
|
||||
gpl3 cc-by-sa-30
|
||||
];
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
};
|
||||
}
|
@ -14247,6 +14247,8 @@ let
|
||||
|
||||
pingus = callPackage ../games/pingus {};
|
||||
|
||||
pioneer = callPackage ../games/pioneer { };
|
||||
|
||||
pioneers = callPackage ../games/pioneers { };
|
||||
|
||||
planetary_annihilation = callPackage ../games/planetaryannihilation { };
|
||||
|
Loading…
Reference in New Issue
Block a user