-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
03e7a22
commit d6d0823
Showing
2 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, libxslt, html-tidy }: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "html-tidy"; | ||
version = "5.6.0"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "htacg"; | ||
repo = "tidy-html5"; | ||
rev = version; | ||
hash = "sha256-M3kOhy/gZn30QQVtVLB/C0dDX+K//R84wEut0AorJ3A="; | ||
}; | ||
|
||
# https://github.com/htacg/tidy-html5/pull/1036 | ||
patches = (fetchpatch { | ||
url = "https://github.com/htacg/tidy-html5/commit/e9aa038bd06bd8197a0dc049380bc2945ff55b29.diff"; | ||
sha256 = "sha256-Q2GjinNBWLL+HXUtslzDJ7CJSTflckbjweiSMCnIVwg="; | ||
}); | ||
|
||
nativeBuildInputs = [ cmake libxslt/*manpage*/ ] | ||
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) html-tidy; | ||
|
||
cmakeFlags = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ | ||
"-DHOST_TIDY=tidy" | ||
]; | ||
|
||
# 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 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; []; | ||
mainProgram = "tidy"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters