nixpkgs/pkgs/development/tools/rubocop/default.nix

19 lines
390 B
Nix
Raw Normal View History

{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
2019-08-13 23:52:01 +02:00
bundlerEnv {
pname = "rubocop";
inherit ruby;
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "rubocop";
meta = with lib; {
description = "Automatic Ruby code style checking tool";
homepage = "https://rubocop.org/";
license = licenses.mit;
2019-07-09 03:14:46 +02:00
maintainers = with maintainers; [ marsam leemachin ];
};
}