2017-06-28 20:56:12 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, libxslt
|
|
|
|
, hostPlatform
|
|
|
|
}:
|
2009-07-05 14:07:39 +00:00
|
|
|
|
2015-11-29 08:33:50 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "html-tidy-${version}";
|
2017-07-24 16:17:28 +00:00
|
|
|
version = "5.4.0";
|
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;
|
2017-07-24 16:17:28 +00:00
|
|
|
sha256 = "1q9ag2dh2j636fw9vyz6gg0kiss8p6lvj22h25nqsw0daan57c32";
|
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
|
|
|
|
2016-02-16 18:48:19 +00:00
|
|
|
cmakeFlags = stdenv.lib.optional
|
2017-06-28 20:56:12 +00:00
|
|
|
(hostPlatform.libc or null == "msvcrt") "-DCMAKE_SYSTEM_NAME=Windows";
|
2016-02-16 18:48:19 +00:00
|
|
|
|
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
|
|
|
|
2015-11-29 08:33:50 +00:00
|
|
|
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.
|
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
|
|
|
|
homepage = http://html-tidy.org;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
|
|
|
}
|