nixpkgs/pkgs/development/tools/rubocop/default.nix

18 lines
345 B
Nix
Raw Normal View History

{ lib, bundlerEnv, ruby }:
bundlerEnv rec {
pname = "rubocop";
inherit ruby;
gemdir = ./.;
meta = with lib; {
description = "Automatic Ruby code style checking tool";
2019-05-07 22:20:00 +01:00
homepage = "https://docs.rubocop.org/";
license = licenses.mit;
maintainers = with maintainers; [ leemachin ];
platforms = platforms.unix;
};
}