2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
2015-10-15 23:50:38 +01:00
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
pname = "ruby-zoom";
|
|
|
|
|
|
|
|
inherit ruby;
|
2017-01-17 23:17:06 +00:00
|
|
|
gemdir = ./.;
|
2015-10-15 23:50:38 +01:00
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "ruby-zoom";
|
|
|
|
|
2015-10-15 23:50:38 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Quickly open CLI search results in your favorite editor!";
|
|
|
|
homepage = https://gitlab.com/mjwhitta/zoom;
|
|
|
|
license = with licenses; gpl3;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ vmandela nicknovitski ];
|
2015-10-15 23:50:38 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|