Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
431 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
bundlerApp,
bundlerUpdateScript,
}:
bundlerApp {
pname = "asmrepl";
gemdir = ./.;
exes = [ "asmrepl" ];
passthru.updateScript = bundlerUpdateScript "asmrepl";
meta = with lib; {
description = "REPL for x86-64 assembly language";
homepage = "https://github.com/tenderlove/asmrepl";
license = licenses.asl20;
maintainers = with maintainers; [ lom ];
platforms = platforms.x86_64;
};
}