nixpkgs/pkgs/development/tools/rubocop/default.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;
};
}