1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/misc/mdl/default.nix
2019-01-20 13:23:46 +01:00

16 lines
364 B
Nix

{ lib, bundlerEnv, ruby }:
bundlerEnv {
inherit ruby;
pname = "mdl";
gemdir = ./.;
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 ];
platforms = platforms.all;
};
}