2021-12-05 02:30:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
2023-03-04 00:22:25 +01:00
|
|
|
, SDL2, libpng, libjpeg, glew, openal, scons, libmad, libuuid
|
2016-12-09 01:02:44 +01:00
|
|
|
}:
|
|
|
|
|
2021-06-22 23:44:58 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "endless-sky";
|
2023-03-04 00:22:25 +01:00
|
|
|
version = "0.9.16.1";
|
2016-12-09 01:02:44 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "endless-sky";
|
|
|
|
repo = "endless-sky";
|
|
|
|
rev = "v${version}";
|
2023-03-04 00:22:25 +01:00
|
|
|
sha256 = "sha256-bohljxAtSVqsfnge6t4LF3pC1s1r99v3hNLKTBquC20=";
|
2016-12-09 01:02:44 +01:00
|
|
|
};
|
|
|
|
|
2021-01-06 09:32:03 +01:00
|
|
|
patches = [
|
|
|
|
./fixes.patch
|
|
|
|
];
|
|
|
|
|
2021-12-03 20:35:55 +01:00
|
|
|
preBuild = ''
|
|
|
|
export AR="${stdenv.cc.targetPrefix}gcc-ar"
|
|
|
|
'';
|
|
|
|
|
2016-12-09 01:02:44 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
buildInputs = [
|
2023-03-04 00:22:25 +01:00
|
|
|
SDL2 libpng libjpeg glew openal scons libmad libuuid
|
2016-12-09 01:02:44 +01:00
|
|
|
];
|
|
|
|
|
2018-11-12 03:52:07 +01:00
|
|
|
prefixKey = "PREFIX=";
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-12-09 01:02:44 +01:00
|
|
|
description = "A sandbox-style space exploration game similar to Elite, Escape Velocity, or Star Control";
|
2020-03-01 12:22:58 +01:00
|
|
|
homepage = "https://endless-sky.github.io/";
|
2016-12-09 01:02:44 +01:00
|
|
|
license = with licenses; [
|
|
|
|
gpl3Plus cc-by-sa-30 cc-by-sa-40 publicDomain
|
|
|
|
];
|
|
|
|
maintainers = with maintainers; [ lheckemann ];
|
2018-03-13 23:00:52 +01:00
|
|
|
platforms = platforms.linux; # Maybe other non-darwin Unix
|
2016-12-09 01:02:44 +01:00
|
|
|
};
|
|
|
|
}
|