tidy-html5: added package, also provides libtidy5

This commit is contained in:
Edward Tjörnhammar
2015-05-25 15:05:05 +02:00
parent d808f5b3e6
commit 161fdec0f5
2 changed files with 26 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{ stdenv, lib, cmake, fetchFromGitHub, ... }:
stdenv.mkDerivation rec {
name = "tidy-html5";
version = "4.9.30";
src = fetchFromGitHub {
owner = "htacg";
repo = "tidy-html5";
rev = version;
sha256 = "0hd4c23352r5lnh23mx137wb4mkxcjdrl1dy8kgghszik5fprs3s";
};
buildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "The granddaddy of HTML tools, with support for modern standards";
homepage = "http://www.html-tidy.org/";
license = licenses.w3c;
maintainers = with maintainers; [ edwtjo ];
};
}