about summary refs log tree commit diff
path: root/pkgs/misc/emulators
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-01-28 05:48:49 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-01-28 18:13:42 -0300
commit617154f7ebec51bae1afe0f8ed786d1105d0d461 (patch)
treee5f5b3dce419ecb6bb2db2c68039c4a5ed908e67 /pkgs/misc/emulators
parentde8955b6701235bb9270c161d2df858f06c9fae8 (diff)
downloadnixlib-617154f7ebec51bae1afe0f8ed786d1105d0d461.tar
nixlib-617154f7ebec51bae1afe0f8ed786d1105d0d461.tar.gz
nixlib-617154f7ebec51bae1afe0f8ed786d1105d0d461.tar.bz2
nixlib-617154f7ebec51bae1afe0f8ed786d1105d0d461.tar.lz
nixlib-617154f7ebec51bae1afe0f8ed786d1105d0d461.tar.xz
nixlib-617154f7ebec51bae1afe0f8ed786d1105d0d461.tar.zst
nixlib-617154f7ebec51bae1afe0f8ed786d1105d0d461.zip
x16-emulator: init at 38
Diffstat (limited to 'pkgs/misc/emulators')
-rw-r--r--pkgs/misc/emulators/commander-x16/emulator.nix42
1 files changed, 42 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;
+  };
+}