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