python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / 1oom / default.nix
blob54bfb4d0b321910b9cd0faf1413556ce79f70234
1 { lib, stdenv, fetchFromGitLab, autoreconfHook, libsamplerate, SDL2, SDL2_mixer, readline }:
3 stdenv.mkDerivation rec {
4   pname = "1oom";
5   version = "1.0";
7   src = fetchFromGitLab {
8     owner = "KilgoreTroutMaskReplicant";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-+HwSykSyAGHtITVOu4nIG87kWwVxGyFXb/NRSjhWlvs=";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
15   buildInputs = [ libsamplerate SDL2 SDL2_mixer readline ];
17   outputs = [ "out" "doc" ];
19   postInstall = ''
20     install -d $doc/share/doc/${pname}
21     install -t $doc/share/doc/${pname} \
22       HACKING NEWS PHILOSOPHY README doc/*.txt
23   '';
25   meta = with lib; {
26     homepage = "https://kilgoretroutmaskreplicant.gitlab.io/plain-html/";
27     description = "Master of Orion (1993) game engine recreation";
28     license = licenses.gpl2Only;
29     platforms = platforms.linux;
30     maintainers = [ maintainers.AndersonTorres ];
31   };