2014-12-06 16:23:30 +01:00
|
|
|
{ stdenv, kde, kdelibs, html-tidy, kactivities
|
2014-09-20 11:09:11 +02:00
|
|
|
, nepomuk_core, nepomuk_widgets, libXt }:
|
|
|
|
|
|
|
|
kde {
|
2015-11-29 09:33:50 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace konq-plugins/validators/tidy_validator.cpp \
|
|
|
|
--replace buffio.h tidybuffio.h
|
|
|
|
'';
|
|
|
|
|
2014-12-06 16:23:30 +01:00
|
|
|
buildInputs = [ kdelibs nepomuk_core nepomuk_widgets html-tidy kactivities libXt ];
|
2014-09-20 11:09:11 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Base KDE applications, including the Dolphin file manager and Konqueror web browser";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|