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

bundlerEnv rec {
  pname = "rubocop";

  inherit ruby;

  gemdir = ./.;

  meta = with lib; {
    description = "Automatic Ruby code style checking tool";
    homepage = "https://docs.rubocop.org/";
    license = licenses.mit;
    maintainers = with maintainers; [ leemachin ];
    platforms = platforms.unix;
  };
}