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

bundlerApp {
  pname = "mdl";
  gemdir = ./.;
  exes = [ "mdl" ];

  passthru.updateScript = bundlerUpdateScript "mdl";

  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 manveru nicknovitski ];
    platforms = platforms.all;
  };
}