20 lines
427 B
Nix
Raw Normal View History

{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
2019-08-13 21:52:01 +00:00
bundlerEnv {
pname = "rubocop";
inherit ruby;
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "rubocop";
meta = with lib; {
description = "Automatic Ruby code style checking tool";
2019-05-07 16:20:00 -05:00
homepage = "https://docs.rubocop.org/";
license = licenses.mit;
2019-07-08 20:14:46 -05:00
maintainers = with maintainers; [ marsam leemachin ];
platforms = platforms.unix;
};
}