1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-05-02 19:53:07 +00:00
This commit is contained in:
Rae 5e 2025-03-10 23:34:04 -04:00
parent fea9f7203e
commit 69bea24303
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
11 changed files with 93 additions and 53 deletions

View file

@ -0,0 +1,23 @@
# TODO
with import <nixpkgs> {};
stdenv.mkDerivation rec {
pname = "vasm-psi-x-m68k";
version = "1.1.2";
src = fetchFromGitHub {
owner = "NaotoNTP";
repo = "vasm-psi-x";
rev = "v${version}";
hash = "sha256-JuJoh99Dr1wDFbvpD28tgxyG/JH6B6NANoTVZnjhqf0=";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DVASM_CPU=m68k" "-DVASM_SYNTAX=psi-x" ];
meta = with lib; {
description = "Portable and retargetable assembler (Motorola 68000)";
homepage = "https://github.com/NaotoNTP/vasm-psi-x";
license = licenses.free;
};
}

View file

@ -1,26 +0,0 @@
{ stdenv, fetchFromGitHub, cmake, wxGTK32, lib }: stdenv.mkDerivation {
pname = "wxwabbitemu";
version = "0.1.0";
src = fetchFromGitHub {
owner = "alberthdev";
repo = "wxwabbitemu";
rev = "7b9ef9d3109355c053d83ae6be67cd75dd6ca8dc";
sha256 = "035qlnk385qkkvwfhfd76cf70h5z2yhw0dzbay3pydx1qskn40dj";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
wxGTK32
];
meta = with lib; {
description = "Cross-platform TI-8x emulator based on Wabbitemu";
homepage = "https://github.com/alberthdev/wxwabbitemu";
license = licenses.gpl2;
platform = platforms.linux;
};
}