nixpkgs/pkgs/games/endless-sky/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, SDL2
, libpng
, libjpeg
, glew
, openal
, scons
, libmad
, libuuid
2016-12-09 00:02:44 +00:00
}:
2021-06-22 21:44:58 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "endless-sky";
2024-02-17 20:39:53 +00:00
version = "0.10.6";
2016-12-09 00:02:44 +00:00
src = fetchFromGitHub {
owner = "endless-sky";
repo = "endless-sky";
rev = "v${version}";
2024-02-17 20:39:53 +00:00
sha256 = "sha256-3mprmW6K8pYs7J2q71fohsh9fZEP2RZjN1rSWUAwbhg=";
2016-12-09 00:02:44 +00:00
};
2021-01-06 08:32:03 +00:00
patches = [
./fixes.patch
];
postPatch = ''
# the trailing slash is important!!
# endless sky naively joins the paths with string concatenation
# so it's essential that there be a trailing slash on the resources path
substituteInPlace source/Files.cpp \
--replace '%NIXPKGS_RESOURCES_PATH%' "$out/share/games/endless-sky/"
'';
preBuild = ''
export AR="${stdenv.cc.targetPrefix}gcc-ar"
'';
2016-12-09 00:02:44 +00:00
enableParallelBuilding = true;
buildInputs = [
SDL2
libpng
libjpeg
glew
openal
scons
libmad
libuuid
2016-12-09 00:02:44 +00:00
];
prefixKey = "PREFIX=";
meta = with lib; {
2016-12-09 00:02:44 +00:00
description = "A sandbox-style space exploration game similar to Elite, Escape Velocity, or Star Control";
mainProgram = "endless-sky";
2020-03-01 11:22:58 +00: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
2016-12-09 00:02:44 +00:00
];
maintainers = with maintainers; [ lheckemann _360ied ];
platforms = platforms.linux; # Maybe other non-darwin Unix
2016-12-09 00:02:44 +00:00
};
}