summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/emulators/commanderx16/emulator.nix
blob: 3acf4a07603aa47a156c36c9412fb58a832a662e (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ stdenv
, lib
, fetchFromGitHub
, SDL2
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "x16-emulator";
  version = "41";

  src = fetchFromGitHub {
    owner = "commanderx16";
    repo = "x16-emulator";
    rev = "r${finalAttrs.version}";
    hash = "sha256-pnWqtSXQzUfQ8ADIXL9r2YjuBwHDQ2NAffAEFCN5Qzw=";
  };

  dontConfigure = true;

  buildInputs = [ SDL2 ];

  installPhase = ''
    runHook preInstall

    install -Dm 755 -t $out/bin/ x16emu
    install -Dm 444 -t $out/share/doc/x16-emulator/ README.md

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://www.commanderx16.com/forum/index.php?/home/";
    description = "The official emulator of CommanderX16 8-bit computer";
    license = licenses.bsd2;
    maintainers = with maintainers; [ AndersonTorres ];
    mainProgram = "x16emu";
    inherit (SDL2.meta) platforms;
    broken = with stdenv; isDarwin && isAarch64;
  };

  passthru = {
    # upstream project recommends emulator and rom to be synchronized;
    # passing through the version is useful to ensure this
    inherit (finalAttrs) version;
  };
})