2019-07-22 05:02:47 -07:00
|
|
|
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
2015-10-16 04:20:38 +05:30
|
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
|
pname = "ruby-zoom";
|
|
|
|
|
|
|
|
|
|
inherit ruby;
|
2017-01-18 00:17:06 +01:00
|
|
|
gemdir = ./.;
|
2015-10-16 04:20:38 +05:30
|
|
|
|
2019-07-22 05:02:47 -07:00
|
|
|
passthru.updateScript = bundlerUpdateScript "ruby-zoom";
|
|
|
|
|
|
2015-10-16 04:20:38 +05:30
|
|
|
meta = with lib; {
|
|
|
|
|
description = "Quickly open CLI search results in your favorite editor!";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://gitlab.com/mjwhitta/zoom";
|
2015-10-16 04:20:38 +05:30
|
|
|
license = with licenses; gpl3;
|
2019-07-22 05:02:47 -07:00
|
|
|
maintainers = with maintainers; [ vmandela nicknovitski ];
|
2015-10-16 04:20:38 +05:30
|
|
|
platforms = platforms.unix;
|
|
|
|
|
};
|
|
|
|
|
}
|