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