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

20 lines
427 B
Nix
Raw Normal View History

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