2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, libxslt }:
|
2009-07-05 16:07:39 +02:00
|
|
|
|
2015-11-29 09:33:50 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "html-tidy";
|
2021-07-12 07:02:18 +02:00
|
|
|
version = "5.8.0";
|
2009-07-05 16:07:39 +02:00
|
|
|
|
2017-01-23 01:34:41 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "htacg";
|
|
|
|
repo = "tidy-html5";
|
|
|
|
rev = version;
|
2021-07-12 07:02:18 +02:00
|
|
|
sha256 = "sha256-ZMz0NySxzX2XHiqB8f5asvwjIG6kdIcq8Gb3EbAxBaU=";
|
2015-11-29 09:33:50 +01:00
|
|
|
};
|
2009-07-05 16:07:39 +02:00
|
|
|
|
2015-11-29 09:33:50 +01:00
|
|
|
nativeBuildInputs = [ cmake libxslt/*manpage*/ ];
|
2009-07-05 16:07:39 +02:00
|
|
|
|
2018-10-17 06:19:34 +02:00
|
|
|
cmakeFlags = [];
|
|
|
|
|
2015-11-29 09:33:50 +01: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 16:07:39 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-11-29 09:33:50 +01: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 16:07:39 +02:00
|
|
|
'';
|
2015-11-29 09:33:50 +01:00
|
|
|
license = licenses.libpng; # very close to it - the 3 clauses are identical
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://html-tidy.org";
|
2015-11-29 09:33:50 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
|
|
|
}
|