about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/interpreters/asmrepl/default.nix
blob: a046a3c60175889dced2505280ee75cd1f468f40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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;
  };
}