about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/misc/mdl/default.nix
blob: e7f280cf4cf50e0719143dfa11aa625342ebc56e (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 totoroot ];
    platforms = platforms.all;
  };
}