My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/misc/mdl/default.nix

17 lines
460 B

{ 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;
};
}