summaryrefslogtreecommitdiffstats
path: root/pkgs/misc/emulators
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-01-28 05:50:55 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-01-28 18:13:42 -0300
commitc20c774ce0f33670fbabac47ffcb028baafde3fc (patch)
tree5132dd1ae47840be0da3bfddeb794544b43c9c0a /pkgs/misc/emulators
parent617154f7ebec51bae1afe0f8ed786d1105d0d461 (diff)
x16-rom: init at 38
Diffstat (limited to 'pkgs/misc/emulators')
-rw-r--r--pkgs/misc/emulators/commander-x16/rom.nix46
1 files changed, 46 insertions, 0 deletions
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;
+ };
+}