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