summary refs log tree commit diff
path: root/pkgs/applications/kde/kig.nix
blob: f2a1d275f6e5d9d9e34f49b65beb7da72a0c692d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  kparts, qtsvg, qtxmlpatterns, ktexteditor, boost
}:

mkDerivation {
  name = "kig";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ raskin ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ boost ];
  propagatedBuildInputs = [
    kparts qtsvg qtxmlpatterns ktexteditor
  ];
}