1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 09:31:01 +00:00

mdl: init at 0.5.0

This commit is contained in:
Tobias Happ 2019-01-20 13:23:46 +01:00
parent fdf7a22bbb
commit 61a7313d7a
6 changed files with 88 additions and 0 deletions

View file

@ -0,0 +1,3 @@
---
BUNDLE_PATH: "vendor/bundle"
BUNDLE_CACHE_ALL: "true"

View file

@ -0,0 +1,3 @@
source "https://rubygems.org"
gem "mdl"

View file

@ -0,0 +1,21 @@
GEM
remote: https://rubygems.org/
specs:
kramdown (1.17.0)
mdl (0.5.0)
kramdown (~> 1.12, >= 1.12.0)
mixlib-cli (~> 1.7, >= 1.7.0)
mixlib-config (~> 2.2, >= 2.2.1)
mixlib-cli (1.7.0)
mixlib-config (2.2.18)
tomlrb
tomlrb (1.2.8)
PLATFORMS
ruby
DEPENDENCIES
mdl
BUNDLED WITH
1.16.3

View file

@ -0,0 +1,15 @@
{ 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;
};
}

View file

@ -0,0 +1,44 @@
{
kramdown = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "1n1c4jmrh5ig8iv1rw81s4mw4xsp4v97hvf8zkigv4hn5h542qjq";
type = "gem";
};
version = "1.17.0";
};
mdl = {
dependencies = ["kramdown" "mixlib-cli" "mixlib-config"];
source = {
remotes = ["https://rubygems.org"];
sha256 = "047hp8z1ma630wp38bm1giklkf385rp6wly8aidn825q831w2g4i";
type = "gem";
};
version = "0.5.0";
};
mixlib-cli = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "0647msh7kp7lzyf6m72g6snpirvhimjm22qb8xgv9pdhbcrmcccp";
type = "gem";
};
version = "1.7.0";
};
mixlib-config = {
dependencies = ["tomlrb"];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1gm6yj9cbbgsl9x4xqxga0vz5w0ksq2jnq1wj8hvgm5c4wfcrswb";
type = "gem";
};
version = "2.2.18";
};
tomlrb = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "0g28ssfal6vry3cmhy509ba3vi5d5aggz1gnffnvvmc8ml8vkpiv";
type = "gem";
};
version = "1.2.8";
};
}

View file

@ -8870,6 +8870,8 @@ in
mbed-cli = callPackage ../development/tools/mbed-cli { };
mdl = callPackage ../development/tools/misc/mdl { };
minify = callPackage ../development/web/minify { };
minizinc = callPackage ../development/tools/minizinc { };