mdl: use bundlerApp

This commit is contained in:
Michael Fellinger
2019-05-05 15:38:10 +02:00
parent bf892e148c
commit 1edc21fa52
2 changed files with 14 additions and 4 deletions
+4 -4
View File
@@ -1,15 +1,15 @@
{ lib, bundlerEnv, ruby }:
{ lib, bundlerApp }:
bundlerEnv {
inherit ruby;
bundlerApp {
pname = "mdl";
gemdir = ./.;
exes = [ "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 ];
maintainers = with maintainers; [ gerschtli manveru ];
platforms = platforms.all;
};
}