nixpkgs/pkgs/development/tools/misc/mdl/default.nix
2019-05-05 15:38:10 +02:00

16 lines
370 B
Nix

{ lib, bundlerApp }:
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 manveru ];
platforms = platforms.all;
};
}