1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-05-03 12:14: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;
};
}