2019-05-05 14:36:23 +01:00
|
|
|
{ lib, bundlerApp }:
|
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
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A tool to check markdown files and flag style issues";
|
|
|
|
homepage = https://github.com/markdownlint/markdownlint;
|
|
|
|
license = licenses.mit;
|
2019-05-05 14:36:23 +01:00
|
|
|
maintainers = with maintainers; [ gerschtli manveru ];
|
2019-01-20 12:23:46 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|