summary refs log blame commit diff
path: root/pkgs/tools/text/ruby-zoom/default.nix
blob: 965d23d0c44bf870b8ded9928eade214f4b6888d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                               




                      
               
 

                                                          

                                                                             
                                                     
                                      
                                                              


                                 
{ 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;
  };
}