2021-12-06 16:07:01 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "asmrepl";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "asmrepl" ];
|
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript "asmrepl";
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "REPL for x86-64 assembly language";
|
2021-12-06 16:07:01 +00:00
|
|
|
homepage = "https://github.com/tenderlove/asmrepl";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ lom ];
|
|
|
|
platforms = platforms.x86_64;
|
|
|
|
};
|
|
|
|
}
|