mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18 lines
358 B
Nix
18 lines
358 B
Nix
{ lib, bundlerEnv, ruby }:
|
|
|
|
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;
|
|
};
|
|
}
|