nixpkgs/pkgs/desktops/kde-4.14/kde-baseapps/kde-baseapps.nix

16 lines
414 B
Nix
Raw Normal View History

2017-02-18 20:39:34 +01:00
{ stdenv, kde, kdelibs, html-tidy, kactivities, libXt }:
2014-09-20 11:09:11 +02:00
kde {
postPatch = ''
substituteInPlace konq-plugins/validators/tidy_validator.cpp \
--replace buffio.h tidybuffio.h
'';
2017-02-18 20:39:34 +01:00
buildInputs = [ kdelibs 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;
};
}