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

18 lines
458 B
Nix
Raw Normal View History

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