nixpkgs/pkgs/development/tools/misc/mdl/default.nix
2019-07-22 12:02:47 +00:00

18 lines
458 B
Nix

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