81b9cc6f54
- the original project has been unmaintained for years - some dependants needed to be patched due to renamed headers https://github.com/htacg/tidy-html5/issues/326#issuecomment-160329114 - separate tidy-html5 package was removed, as since the 5.0.0 version it's meant as a successor to both, and library name got back from libtidy5.so to libtidy.so https://github.com/htacg/tidy-html5/issues/326#issuecomment-160314666 /cc committers to tidy-html5: @edwjto and @zimbatm.
32 lines
928 B
Nix
32 lines
928 B
Nix
{ stdenv, fetchurl, cmake, libxslt }:
|
|
|
|
let
|
|
version = "5.0.0";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "html-tidy-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/htacg/tidy-html5/archive/${version}.tar.gz";
|
|
sha256 = "1qz7hgk482496agngp9grz4jqkyxrp29r2ywbccc9i5198yspca4";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake libxslt/*manpage*/ ];
|
|
|
|
# ATM bin/tidy is statically linked, as upstream provides no other option yet.
|
|
# https://github.com/htacg/tidy-html5/issues/326#issuecomment-160322107
|
|
|
|
meta = with stdenv.lib; {
|
|
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.
|
|
'';
|
|
license = licenses.libpng; # very close to it - the 3 clauses are identical
|
|
homepage = http://html-tidy.org;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
};
|
|
}
|
|
|