about summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.14/kde-baseapps/kde-baseapps.nix
blob: df211f491993654f2d998a287824e972b4551794 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, kde, kdelibs, html-tidy, kactivities, libXt }:

kde {
  postPatch = ''
    substituteInPlace konq-plugins/validators/tidy_validator.cpp \
      --replace buffio.h tidybuffio.h
  '';

  buildInputs = [ kdelibs html-tidy kactivities libXt ];

  meta = {
    description = "Base KDE applications, including the Dolphin file manager and Konqueror web browser";
    license = stdenv.lib.licenses.gpl2;
  };
}