mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
17 lines
460 B
Nix
17 lines
460 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "mdl";
|
|
gemdir = ./.;
|
|
exes = [ "mdl" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "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 nicknovitski ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|