summary refs log tree commit diff
path: root/pkgs/development/tools/misc/mdl/default.nix
blob: a3c361efc9d5728aa0467b8104e5fa6882565ed5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, bundlerEnv, ruby }:

bundlerEnv {
  inherit ruby;
  pname = "mdl";
  gemdir = ./.;

  meta = with lib; {
    description = "A tool to check markdown files and flag style issues";
    homepage = https://github.com/markdownlint/markdownlint;
    license = licenses.mit;
    maintainers = with maintainers; [ gerschtli ];
    platforms = platforms.all;
  };
}