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

bundlerEnv {
  pname = "ruby-zoom";

  inherit ruby;
  gemdir = ./.;

  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 stdenv.lib.maintainers; [ vmandela ];
    platforms   = platforms.unix;
  };
}