2016-12-09 00:02:44 +00:00
|
|
|
{ stdenv, fetchFromGitHub
|
2017-03-06 12:35:49 +00:00
|
|
|
, SDL2, libpng, libjpeg, glew, openal, scons, libmad
|
2016-12-09 00:02:44 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2017-08-27 20:05:15 +01:00
|
|
|
version = "0.9.8";
|
2016-12-09 00:02:44 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "endless-sky-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "endless-sky";
|
|
|
|
repo = "endless-sky";
|
|
|
|
rev = "v${version}";
|
2017-08-27 20:05:15 +01:00
|
|
|
sha256 = "0i36lawypikbq8vvzfis1dn7yf6q0d2s1cllshfn7kmjb6pqfi6c";
|
2016-12-09 00:02:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
buildInputs = [
|
2017-03-06 12:35:49 +00:00
|
|
|
SDL2 libpng libjpeg glew openal scons libmad
|
2016-12-09 00:02:44 +00:00
|
|
|
];
|
|
|
|
|
2018-11-12 02:52:07 +00:00
|
|
|
prefixKey = "PREFIX=";
|
|
|
|
|
2016-12-09 00:02:44 +00:00
|
|
|
patches = [
|
|
|
|
./fixes.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A sandbox-style space exploration game similar to Elite, Escape Velocity, or Star Control";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://endless-sky.github.io/;
|
2016-12-09 00:02:44 +00:00
|
|
|
license = with licenses; [
|
|
|
|
gpl3Plus cc-by-sa-30 cc-by-sa-40 publicDomain
|
|
|
|
];
|
|
|
|
maintainers = with maintainers; [ lheckemann ];
|
2018-03-13 22:00:52 +00:00
|
|
|
platforms = platforms.linux; # Maybe other non-darwin Unix
|
2016-12-09 00:02:44 +00:00
|
|
|
};
|
|
|
|
}
|