Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 17 lines 467 B view raw
1{ lib, bundlerApp, bundlerUpdateScript }: 2 3bundlerApp { 4 pname = "mdl"; 5 gemdir = ./.; 6 exes = [ "mdl" ]; 7 8 passthru.updateScript = bundlerUpdateScript "mdl"; 9 10 meta = with lib; { 11 description = "Tool to check markdown files and flag style issues"; 12 homepage = "https://github.com/markdownlint/markdownlint"; 13 license = licenses.mit; 14 maintainers = with maintainers; [ gerschtli manveru nicknovitski totoroot ]; 15 platforms = platforms.all; 16 }; 17}