aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/games/1oom/default.nix
blob: 70c21a3cc1d8d539a1a31f5ded5aefb090addabd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchFromGitLab, autoreconfHook, libsamplerate, SDL2, SDL2_mixer, readline }:

stdenv.mkDerivation rec {
  pname = "1oom";
  version = "1.0";

  src = fetchFromGitLab {
    owner = "KilgoreTroutMaskReplicant";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-+HwSykSyAGHtITVOu4nIG87kWwVxGyFXb/NRSjhWlvs=";
  };

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ libsamplerate SDL2 SDL2_mixer readline ];

  outputs = [ "out" "doc" ];

  postInstall = ''
    install -d $doc/share/doc/${pname}
    install -t $doc/share/doc/${pname} \
      HACKING NEWS PHILOSOPHY README doc/*.txt
  '';

  meta = with stdenv.lib; {
    homepage = "https://kilgoretroutmaskreplicant.gitlab.io/plain-html/";
    description = "Master of Orion (1993) game engine recreation";
    license = licenses.gpl2Only;
    platforms = platforms.linux;
    maintainers = [ maintainers.AndersonTorres ];
  };
}