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