fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 bundlerEnv,
3 ruby,
4 lib,
5 bundlerUpdateScript,
6}:
7
8bundlerEnv rec {
9 name = "${pname}-${version}";
10 pname = "html-proofer";
11 version = (import ./gemset.nix).html-proofer.version;
12
13 inherit ruby;
14 gemdir = ./.;
15
16 passthru.updateScript = bundlerUpdateScript pname;
17
18 meta = with lib; {
19 description = "Tool to validate HTML files";
20 homepage = "https://github.com/gjtorikian/html-proofer";
21 license = licenses.mit;
22 maintainers = [ ];
23 platforms = platforms.unix;
24 mainProgram = "htmlproofer";
25 };
26}