mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
219b9d5086
From the website, https://gitlab.com/mjwhitta/zoom Zoom adds some convenience to ag/ack/grep by allowing you to quickly open your search results in your editor of choice. Also available as a ruby gem. https://rubygems.org/gems/ruby-zoom In addition to including the ruby-zoom tool, we also added a global override for the ruby-terminfo gem to handle the ncurses build time dependency.
19 lines
459 B
Nix
19 lines
459 B
Nix
{ lib, bundlerEnv, ruby, stdenv }:
|
|
|
|
bundlerEnv {
|
|
pname = "ruby-zoom";
|
|
|
|
inherit ruby;
|
|
gemfile = ./Gemfile;
|
|
lockfile = ./Gemfile.lock;
|
|
gemset = ./gemset.nix;
|
|
|
|
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;
|
|
};
|
|
}
|