mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-05-03 12:14:07 +00:00
~
This commit is contained in:
parent
fea9f7203e
commit
69bea24303
11 changed files with 93 additions and 53 deletions
23
nixos/pkgs/vasm-psi-x/default.nix
Normal file
23
nixos/pkgs/vasm-psi-x/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue