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

bundlerApp {
  pname = "mdl";
  gemdir = ./.;
  exes = [ "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 ];
    platforms = platforms.all;
  };
}