nixpkgs/pkgs/tools/text/html-tidy/default.nix

36 lines
1 KiB
Nix
Raw Normal View History

2017-06-28 22:56:12 +02:00
{ stdenv, fetchFromGitHub, cmake, libxslt
, hostPlatform
}:
stdenv.mkDerivation rec {
name = "html-tidy-${version}";
2017-07-24 18:17:28 +02:00
version = "5.4.0";
2017-01-23 01:34:41 +01:00
src = fetchFromGitHub {
owner = "htacg";
repo = "tidy-html5";
rev = version;
2017-07-24 18:17:28 +02:00
sha256 = "1q9ag2dh2j636fw9vyz6gg0kiss8p6lvj22h25nqsw0daan57c32";
};
nativeBuildInputs = [ cmake libxslt/*manpage*/ ];
cmakeFlags = stdenv.lib.optional
2017-06-28 22:56:12 +02:00
(hostPlatform.libc or null == "msvcrt") "-DCMAKE_SYSTEM_NAME=Windows";
# 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 ];
};
}