2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, libxslt }:
|
2009-07-05 14:07:39 +00:00
|
|
|
|
2015-11-29 08:33:50 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "html-tidy";
|
2021-03-27 12:33:08 +00:00
|
|
|
version = "5.7.28";
|
2009-07-05 14:07:39 +00:00
|
|
|
|
2017-01-23 00:34:41 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "htacg";
|
|
|
|
repo = "tidy-html5";
|
|
|
|
rev = version;
|
2021-03-27 12:33:08 +00:00
|
|
|
sha256 = "sha256-Tny53PtaQWAMAEjqw4tKnmGURfZhhwFQNCJr9jjWZQY=";
|
2015-11-29 08:33:50 +00:00
|
|
|
};
|
2009-07-05 14:07:39 +00:00
|
|
|
|
2015-11-29 08:33:50 +00:00
|
|
|
nativeBuildInputs = [ cmake libxslt/*manpage*/ ];
|
2009-07-05 14:07:39 +00:00
|
|
|
|
2018-10-17 04:19:34 +00:00
|
|
|
cmakeFlags = [];
|
|
|
|
|
2015-11-29 08:33:50 +00:00
|
|
|
# ATM bin/tidy is statically linked, as upstream provides no other option yet.
|
|
|
|
# https://github.com/htacg/tidy-html5/issues/326#issuecomment-160322107
|
2009-07-05 14:07:39 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-11-29 08:33:50 +00:00
|
|
|
description = "A HTML validator and `tidier'";
|
|
|
|
longDescription = ''
|
|
|
|
HTML Tidy is a command-line tool and C library that can be
|
|
|
|
used to validate and fix HTML data.
|
2009-07-05 14:07:39 +00:00
|
|
|
'';
|
2015-11-29 08:33:50 +00:00
|
|
|
license = licenses.libpng; # very close to it - the 3 clauses are identical
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://html-tidy.org";
|
2015-11-29 08:33:50 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
|
|
|
}
|