nixpkgs/pkgs/development/tools/misc/mdl/default.nix

16 lines
370 B
Nix
Raw Normal View History

2019-05-05 15:36:23 +02:00
{ lib, bundlerApp }:
2019-01-20 13:23:46 +01:00
2019-05-05 15:36:23 +02:00
bundlerApp {
2019-01-20 13:23:46 +01:00
pname = "mdl";
gemdir = ./.;
2019-05-05 15:36:23 +02:00
exes = [ "mdl" ];
2019-01-20 13:23:46 +01: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 15:36:23 +02:00
maintainers = with maintainers; [ gerschtli manveru ];
2019-01-20 13:23:46 +01:00
platforms = platforms.all;
};
}