mdl: init at 0.5.0

This commit is contained in:
Tobias Happ
2019-01-20 13:23:46 +01:00
parent fdf7a22bbb
commit 61a7313d7a
6 changed files with 88 additions and 0 deletions
@@ -0,0 +1,15 @@
{ lib, bundlerEnv, ruby }:
bundlerEnv {
inherit ruby;
pname = "mdl";
gemdir = ./.;
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 ];
platforms = platforms.all;
};
}