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

47 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch
2017-03-06 15:35:49 +03:00
, SDL2, libpng, libjpeg, glew, openal, scons, libmad
2016-12-09 03:02:44 +03:00
}:
let
2020-05-02 11:05:50 +03:00
version = "0.9.12";
2016-12-09 03:02:44 +03:00
in
2019-08-14 00:52:01 +03:00
stdenv.mkDerivation {
2019-08-14 00:52:01 +03:00
pname = "endless-sky";
inherit version;
2016-12-09 03:02:44 +03:00
src = fetchFromGitHub {
owner = "endless-sky";
repo = "endless-sky";
rev = "v${version}";
2020-05-02 11:05:50 +03:00
sha256 = "1hly68ljm7yv01jfxyr7g6jivhj0igg6xx7vi92zqymick0hlh7a";
2016-12-09 03:02:44 +03:00
};
2021-01-06 11:32:03 +03:00
patches = [
(fetchpatch {
name = "endless-sky-gcc10.patch";
url = "https://github.com/endless-sky/endless-sky/commit/bc3cab5992694547f9c6c067b5579ef06224781b.patch";
sha256 = "0v3913jyzhh1d81dxv738kcd3xhh7mrl06qnmj7a3ya2xd9pq4dk";
})
./fixes.patch
];
2016-12-09 03:02:44 +03:00
enableParallelBuilding = true;
buildInputs = [
2017-03-06 15:35:49 +03:00
SDL2 libpng libjpeg glew openal scons libmad
2016-12-09 03:02:44 +03:00
];
prefixKey = "PREFIX=";
meta = with lib; {
2016-12-09 03:02:44 +03:00
description = "A sandbox-style space exploration game similar to Elite, Escape Velocity, or Star Control";
2020-03-01 14:22:58 +03:00
homepage = "https://endless-sky.github.io/";
2016-12-09 03:02:44 +03:00
license = with licenses; [
gpl3Plus cc-by-sa-30 cc-by-sa-40 publicDomain
];
maintainers = with maintainers; [ lheckemann ];
platforms = platforms.linux; # Maybe other non-darwin Unix
2016-12-09 03:02:44 +03:00
};
}