2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2019-01-20 12:23:46 +00:00
|
|
|
|
2019-05-05 14:36:23 +01:00
|
|
|
bundlerApp {
|
2019-01-20 12:23:46 +00:00
|
|
|
pname = "mdl";
|
|
|
|
gemdir = ./.;
|
2019-05-05 14:36:23 +01:00
|
|
|
exes = [ "mdl" ];
|
2019-01-20 12:23:46 +00:00
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "mdl";
|
|
|
|
|
2019-01-20 12:23:46 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A tool to check markdown files and flag style issues";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/markdownlint/markdownlint";
|
2019-01-20 12:23:46 +00:00
|
|
|
license = licenses.mit;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ gerschtli manveru nicknovitski ];
|
2019-01-20 12:23:46 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|