nixpkgs/pkgs/development/interpreters/asmrepl/default.nix
2021-12-01 17:19:48 -06:00

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;
};
}