about summary refs log tree commit diff
path: root/pkgs/development/tools/rubocop/default.nix
blob: 850fb5ad7f5800ffbe3c6afe48206bf502fd43e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, lib, bundlerEnv, ruby, makeWrapper }:

bundlerEnv rec {
  pname = "rubocop";

  inherit ruby;

  gemdir = ./.;

  meta = with lib; {
    description = "Automatic Ruby code style checking tool";
    homepage = http://rubocop.readthedocs.io/en/latest/;
    license = licenses.mit;
    maintainers = with maintainers; [ leemachin ];
    platforms = platforms.unix;
  };
}