html-proofer: init at 3.8.0 (#40772)

This commit is contained in:
Michael Weiss
2018-05-19 16:10:32 +02:00
committed by GitHub
parent 4c132c40bd
commit 142b65f088
5 changed files with 224 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ bundlerEnv, ruby, lib }:
bundlerEnv rec {
name = "${pname}-${version}";
pname = "html-proofer";
version = (import ./gemset.nix).html-proofer.version;
inherit ruby;
gemdir = ./.;
meta = with lib; {
description = "A tool to validate HTML files";
homepage = https://github.com/gjtorikian/html-proofer;
license = licenses.mit;
maintainers = with maintainers; [ primeos ];
platforms = platforms.unix;
};
}