about summary refs log tree commit diff
path: root/pkgs/applications/emulators/commanderx16/rom.nix
blob: 5da77ebceefe22949016fe50e0aad6cb9c000e22 (plain) (blame)
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
, cc65
}:

stdenv.mkDerivation rec {
  pname = "x16-rom";
  version = "38";

  src = fetchFromGitHub {
    owner = "commanderx16";
    repo = pname;
    rev = "r${version}";
    sha256 = "xaqF0ppB7I7ST8Uh3jPbC14uRAb/WH21tHlNeTvYpoI=";
  };

  nativeBuildInputs = [ cc65 ];

  postPatch = ''
    patchShebangs scripts/
  '';

  dontConfigure = true;

  installPhase = ''
    runHook preInstall
    install -D --mode 444 --target-directory $out/share/${pname} build/x16/rom.bin
    install -D --mode 444 --target-directory $out/share/doc/${pname} README.md
    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://www.commanderx16.com/forum/index.php?/home/";
    description = "ROM file for CommanderX16 8-bit computer";
    license = licenses.bsd2;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = cc65.meta.platforms;
  };

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