about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/ruby-zoom/default.nix
blob: 06e505816648e56d29fb8a0a90b53685994528a1 (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;
  };
}