nixpkgs/pkgs/development/tools/rubocop/default.nix
2019-05-07 16:20:00 -05:00

18 lines
345 B
Nix

{ 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;
};
}