nixpkgs/pkgs/tools/text/ruby-zoom/default.nix

19 lines
475 B
Nix
Raw Normal View History

{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
bundlerEnv {
pname = "ruby-zoom";
inherit ruby;
2017-01-17 23:17:06 +00:00
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;
};
}