summary refs log tree commit diff
path: root/pkgs/misc/emulators
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-02-14 09:23:15 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-02-14 09:23:15 -0300
commitfb3ef1f7cd0b16ae4192ddcd9eb4279bbb61fdab (patch)
tree01861c84a41e1a490a81669fc14d1e6264dab6ec /pkgs/misc/emulators
parenta4f1b93b951e57da0f26ff1e53a51e71317573c8 (diff)
downloadnixpkgs-fb3ef1f7cd0b16ae4192ddcd9eb4279bbb61fdab.tar
nixpkgs-fb3ef1f7cd0b16ae4192ddcd9eb4279bbb61fdab.tar.gz
nixpkgs-fb3ef1f7cd0b16ae4192ddcd9eb4279bbb61fdab.tar.bz2
nixpkgs-fb3ef1f7cd0b16ae4192ddcd9eb4279bbb61fdab.tar.lz
nixpkgs-fb3ef1f7cd0b16ae4192ddcd9eb4279bbb61fdab.tar.xz
nixpkgs-fb3ef1f7cd0b16ae4192ddcd9eb4279bbb61fdab.tar.zst
nixpkgs-fb3ef1f7cd0b16ae4192ddcd9eb4279bbb61fdab.zip
py65: init at 1.1.0
Diffstat (limited to 'pkgs/misc/emulators')
-rw-r--r--pkgs/misc/emulators/py65/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/misc/emulators/py65/default.nix b/pkgs/misc/emulators/py65/default.nix
new file mode 100644
index 00000000000..87439f7dcf9
--- /dev/null
+++ b/pkgs/misc/emulators/py65/default.nix
@@ -0,0 +1,26 @@
+{ lib, fetchPypi, buildPythonApplication }:
+
+buildPythonApplication rec {
+  pname = "py65";
+  version = "1.1.0";
+  format = "wheel";
+
+  src = fetchPypi {
+    inherit pname version format;
+    sha256 = "Q7rjiHJ/Ew985vut/8fVAf/wWYW5aBPSvNPm8A6g1zg=";
+  };
+
+  meta = with lib; {
+    homepage = "https://py65.readthedocs.io/";
+    description = "Emulate 6502-based microcomputer systems in Python";
+    longDescription = ''
+      Py65 includes a program called Py65Mon that functions as a machine
+      language monitor. This kind of program is sometimes also called a
+      debugger. Py65Mon provides a command line with many convenient commands
+      for interacting with the simulated 6502-based system.
+    '';
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ AndersonTorres ];
+    platforms = with platforms; all;
+  };
+}