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

16 lines
370 B
Nix
Raw Normal View History

2019-05-05 14:36:23 +01:00
{ lib, bundlerApp }:
2019-01-20 12:23:46 +00:00
2019-05-05 14:36:23 +01:00
bundlerApp {
2019-01-20 12:23:46 +00:00
pname = "mdl";
gemdir = ./.;
2019-05-05 14:36:23 +01:00
exes = [ "mdl" ];
2019-01-20 12:23:46 +00:00
meta = with lib; {
description = "A tool to check markdown files and flag style issues";
homepage = https://github.com/markdownlint/markdownlint;
license = licenses.mit;
2019-05-05 14:36:23 +01:00
maintainers = with maintainers; [ gerschtli manveru ];
2019-01-20 12:23:46 +00:00
platforms = platforms.all;
};
}