summaryrefslogtreecommitdiffstats
path: root/pkgs/misc/emulators
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-01-29 00:43:53 +0000
committerGitHub <noreply@github.com>2021-01-29 00:43:53 +0000
commit98b8e8ebf8e702db3d8475e1fb92b7d3d83a8ffe (patch)
tree1b3fb0582b6bc0002e25c50fdfb2dacfc2792432 /pkgs/misc/emulators
parent7fb7a6299060eef33643b9559e4d390b6e582511 (diff)
parent5a1c008bae84cba12d75662d1154077fa311cd5e (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/misc/emulators')
-rw-r--r--pkgs/misc/emulators/commander-x16/emulator.nix42
-rw-r--r--pkgs/misc/emulators/commander-x16/rom.nix46
2 files changed, 88 insertions, 0 deletions
diff --git a/pkgs/misc/emulators/commander-x16/emulator.nix b/pkgs/misc/emulators/commander-x16/emulator.nix
new file mode 100644
index 000000000000..73442215ff1e
--- /dev/null
+++ b/pkgs/misc/emulators/commander-x16/emulator.nix
@@ -0,0 +1,42 @@
+{ stdenv
+, lib
+, fetchFromGitHub
+, SDL2
+}:
+
+stdenv.mkDerivation rec {
+ pname = "x16-emulator";
+ version = "38";
+
+ src = fetchFromGitHub {
+ owner = "commanderx16";
+ repo = pname;
+ rev = "r${version}";
+ sha256 = "WNRq/m97NpOBWIk6mtxBAKmkxCGWacWjXeOvIhBrkYE=";
+ };
+
+ dontConfigure = true;
+
+ buildInputs = [ SDL2 ];
+
+ installPhase = ''
+ runHook preInstall
+ install -D --mode 755 --target-directory $out/bin/ x16emu
+ 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 = "The official emulator of CommanderX16 8-bit computer";
+ license = licenses.bsd2;
+ maintainers = with maintainers; [ AndersonTorres ];
+ platforms = SDL2.meta.platforms;
+ };
+
+ passthru = {
+ # upstream project recommends emulator and rom synchronized;
+ # passing through the version is useful to ensure this
+ inherit version;
+ };
+}
diff --git a/pkgs/misc/emulators/commander-x16/rom.nix b/pkgs/misc/emulators/commander-x16/rom.nix
new file mode 100644
index 000000000000..5da77ebceefe
--- /dev/null
+++ b/pkgs/misc/emulators/commander-x16/rom.nix
@@ -0,0 +1,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;
+ };
+}