nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
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 = {
15 description = "Tool to check markdown files and flag style issues";
16 homepage = "https://github.com/markdownlint/markdownlint";
17 license = lib.licenses.mit;
18 maintainers = with lib.maintainers; [
19 gerschtli
20 nicknovitski
21 totoroot
22 ];
23 platforms = lib.platforms.all;
24 };
25}