linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / text / html-tidy / default.nix
blob6caa3d34a0c9173ec3ed93958af4745ce0a8383e
1 { lib, stdenv, fetchFromGitHub, cmake, libxslt }:
3 stdenv.mkDerivation rec {
4   pname = "html-tidy";
5   version = "5.7.28";
7   src = fetchFromGitHub {
8     owner = "htacg";
9     repo = "tidy-html5";
10     rev = version;
11     sha256 = "sha256-Tny53PtaQWAMAEjqw4tKnmGURfZhhwFQNCJr9jjWZQY=";
12   };
14   nativeBuildInputs = [ cmake libxslt/*manpage*/ ];
16   cmakeFlags = [];
18   # ATM bin/tidy is statically linked, as upstream provides no other option yet.
19   # https://github.com/htacg/tidy-html5/issues/326#issuecomment-160322107
21   meta = with lib; {
22     description = "A HTML validator and `tidier'";
23     longDescription = ''
24       HTML Tidy is a command-line tool and C library that can be
25       used to validate and fix HTML data.
26     '';
27     license = licenses.libpng; # very close to it - the 3 clauses are identical
28     homepage = "http://html-tidy.org";
29     platforms = platforms.all;
30     maintainers = with maintainers; [ edwtjo ];
31   };