21 lines
431 B
Nix
21 lines
431 B
Nix
{
|
|
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;
|
|
};
|
|
}
|