18 lines
426 B
Nix
18 lines
426 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "asmrepl";
|
|
gemdir = ./.;
|
|
exes = [ "asmrepl" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "asmrepl";
|
|
|
|
meta = with lib; {
|
|
description = "A REPL for x86-64 assembly language";
|
|
homepage = "https://github.com/tenderlove/asmrepl";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ lom ];
|
|
platforms = platforms.x86_64;
|
|
};
|
|
}
|