summary refs log tree commit diff
path: root/pkgs/tools/text/ruby-zoom/default.nix
blob: 965d23d0c44bf870b8ded9928eade214f4b6888d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:

bundlerEnv {
  pname = "ruby-zoom";

  inherit ruby;
  gemdir = ./.;

  passthru.updateScript = bundlerUpdateScript "ruby-zoom";

  meta = with lib; {
    description = "Quickly open CLI search results in your favorite editor!";
    homepage    = "https://gitlab.com/mjwhitta/zoom";
    license     = with licenses; gpl3;
    maintainers = with maintainers; [ vmandela nicknovitski ];
    platforms   = platforms.unix;
  };
}