nixpkgs/pkgs/tools/text/html-tidy/default.nix
Ryan Mulligan c64a239ccf html-tidy: 5.4.0 -> 5.6.0
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/9idavy2wphjqap2sw87ivczwq8wy7vjf-html-tidy-5.6.0/bin/tidy -h` got 0 exit code
- ran `/nix/store/9idavy2wphjqap2sw87ivczwq8wy7vjf-html-tidy-5.6.0/bin/tidy --help` got 0 exit code
- ran `/nix/store/9idavy2wphjqap2sw87ivczwq8wy7vjf-html-tidy-5.6.0/bin/tidy help` got 0 exit code
- ran `/nix/store/9idavy2wphjqap2sw87ivczwq8wy7vjf-html-tidy-5.6.0/bin/tidy -V` and found version 5.6.0
- ran `/nix/store/9idavy2wphjqap2sw87ivczwq8wy7vjf-html-tidy-5.6.0/bin/tidy -v` and found version 5.6.0
- ran `/nix/store/9idavy2wphjqap2sw87ivczwq8wy7vjf-html-tidy-5.6.0/bin/tidy --version` and found version 5.6.0
- ran `/nix/store/9idavy2wphjqap2sw87ivczwq8wy7vjf-html-tidy-5.6.0/bin/tidy -h` and found version 5.6.0
- ran `/nix/store/9idavy2wphjqap2sw87ivczwq8wy7vjf-html-tidy-5.6.0/bin/tidy --help` and found version 5.6.0
- found 5.6.0 with grep in /nix/store/9idavy2wphjqap2sw87ivczwq8wy7vjf-html-tidy-5.6.0
- found 5.6.0 in filename of file in /nix/store/9idavy2wphjqap2sw87ivczwq8wy7vjf-html-tidy-5.6.0

cc "@edwtjo"
2018-03-04 18:51:06 +00:00

36 lines
1 KiB
Nix

{ stdenv, fetchFromGitHub, cmake, libxslt
, hostPlatform
}:
stdenv.mkDerivation rec {
name = "html-tidy-${version}";
version = "5.6.0";
src = fetchFromGitHub {
owner = "htacg";
repo = "tidy-html5";
rev = version;
sha256 = "0w175c5d1babq0w1zzdzw9gl6iqbgyq58v8587s7srp05y3hwy9k";
};
nativeBuildInputs = [ cmake libxslt/*manpage*/ ];
cmakeFlags = stdenv.lib.optional
(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 ];
};
}