git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
17 lines
467 B
Nix
17 lines
467 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "mdl";
|
|
gemdir = ./.;
|
|
exes = [ "mdl" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "mdl";
|
|
|
|
meta = with lib; {
|
|
description = "Tool to check markdown files and flag style issues";
|
|
homepage = "https://github.com/markdownlint/markdownlint";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ gerschtli manveru nicknovitski totoroot ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|