1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "mdl";
5 gemdir = ./.;
6 exes = [ "mdl" ];
7
8 passthru.updateScript = bundlerUpdateScript "mdl";
9
10 meta = with lib; {
11 description = "A tool to check markdown files and flag style issues";
12 homepage = "https://github.com/markdownlint/markdownlint";
13 license = licenses.mit;
14 maintainers = with maintainers; [ gerschtli manveru nicknovitski totoroot ];
15 platforms = platforms.all;
16 };
17}