python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / endless-sky / default.nix
blob7806ae4906a2e1a98c5bd3ab23a93c9919f467c3
1 { lib, stdenv, fetchFromGitHub
2 , SDL2, libpng, libjpeg, glew, openal, scons, libmad
3 }:
5 stdenv.mkDerivation rec {
6   pname = "endless-sky";
7   version = "0.9.14";
9   src = fetchFromGitHub {
10     owner = "endless-sky";
11     repo = "endless-sky";
12     rev = "v${version}";
13     sha256 = "sha256-Vcck+zGcv39DXyhZF2DLUrXq3gDwkgL0NtPT5rVOpHs=";
14   };
16   patches = [
17     ./fixes.patch
18   ];
20   preBuild = ''
21     export AR="${stdenv.cc.targetPrefix}gcc-ar"
22   '';
24   enableParallelBuilding = true;
26   buildInputs = [
27     SDL2 libpng libjpeg glew openal scons libmad
28   ];
30   prefixKey = "PREFIX=";
32   meta = with lib; {
33     description = "A sandbox-style space exploration game similar to Elite, Escape Velocity, or Star Control";
34     homepage = "https://endless-sky.github.io/";
35     license = with licenses; [
36       gpl3Plus cc-by-sa-30 cc-by-sa-40 publicDomain
37     ];
38     maintainers = with maintainers; [ lheckemann ];
39     platforms = platforms.linux; # Maybe other non-darwin Unix
40   };