1{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
2
3bundlerEnv {
4 pname = "ruby-zoom";
5
6 inherit ruby;
7 gemdir = ./.;
8
9 passthru.updateScript = bundlerUpdateScript "ruby-zoom";
10
11 meta = with lib; {
12 description = "Quickly open CLI search results in your favorite editor!";
13 homepage = "https://gitlab.com/mjwhitta/zoom";
14 license = with licenses; gpl3;
15 maintainers = with maintainers; [ vmandela nicknovitski ];
16 platforms = platforms.unix;
17 };
18}