pkgs: add Sim65

This commit is contained in:
Infinidoge 2022-11-23 15:24:04 -05:00
parent 2f3b98e84b
commit e8bb52b12d
2 changed files with 38 additions and 0 deletions

View file

@ -10,4 +10,6 @@ final: prev: {
qtile-unstable = final.callPackage ./qtile.nix { source = final.sources.qtile; };
mcaselector = final.callPackage ./mcaselector.nix { };
sim65 = final.callPackage ./sim65.nix { };
}

36
pkgs/sim65.nix Normal file
View file

@ -0,0 +1,36 @@
{ stdenv
, fetchFromGitHub
, lib
, wxGTK32
}:
stdenv.mkDerivation {
name = "sim65";
src = fetchFromGitHub {
owner = "sittner";
repo = "sim65";
rev = "8557843c93e46e347f6f9d788faef8f302ead560";
sha256 = "sha256-n+THZuD77gtZ5nMcdaq4Xup95NjVPFiMk0zsTOGiXzc=";
};
buildInputs = [ wxGTK32 ];
installPhase = ''
mkdir -p $out/bin
cp sim65 $out/bin
'';
meta = with lib; {
description = "Sim65 is a 65c02 simulator and debugger for Linux/GTK systems";
longDescription = ''
Sim65 is a 65c02 simulator and debugger for Linux/GTK systems.
You can load binary images or S-record files containing 65c02 code and execute it.
Sim65 allows you to see and alter registers and memory, set breakpoints, single step, and a few other things.
The program is immature: there are no peripherals, for example, but it suffices for simple simulation purposes.
'';
homepage = "http://www.wsxyz.net/sim65/";
license = licenses.free;
maintainers = with maintainers; [ infinidoge ];
};
}