81b9cc6f54
- the original project has been unmaintained for years - some dependants needed to be patched due to renamed headers https://github.com/htacg/tidy-html5/issues/326#issuecomment-160329114 - separate tidy-html5 package was removed, as since the 5.0.0 version it's meant as a successor to both, and library name got back from libtidy5.so to libtidy.so https://github.com/htacg/tidy-html5/issues/326#issuecomment-160314666 /cc committers to tidy-html5: @edwjto and @zimbatm.
17 lines
475 B
Nix
17 lines
475 B
Nix
{ stdenv, kde, kdelibs, html-tidy, kactivities
|
|
, nepomuk_core, nepomuk_widgets, libXt }:
|
|
|
|
kde {
|
|
postPatch = ''
|
|
substituteInPlace konq-plugins/validators/tidy_validator.cpp \
|
|
--replace buffio.h tidybuffio.h
|
|
'';
|
|
|
|
buildInputs = [ kdelibs nepomuk_core nepomuk_widgets html-tidy kactivities libXt ];
|
|
|
|
meta = {
|
|
description = "Base KDE applications, including the Dolphin file manager and Konqueror web browser";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|