nixpkgs/pkgs/by-name/md/mdl/package.nix
2025-08-01 09:39:12 +02:00

27 lines
502 B
Nix

{
lib,
bundlerApp,
bundlerUpdateScript,
}:
bundlerApp {
pname = "mdl";
gemdir = ./.;
exes = [ "mdl" ];
passthru.updateScript = bundlerUpdateScript "mdl";
meta = with lib; {
description = "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;
};
}