2015-10-16 00:50:38 +02:00
|
|
|
{ lib, bundlerEnv, ruby, stdenv }:
|
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
pname = "ruby-zoom";
|
|
|
|
|
|
|
|
inherit ruby;
|
2017-01-18 00:17:06 +01:00
|
|
|
gemdir = ./.;
|
2015-10-16 00:50:38 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|