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

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 karchive kcrash
  ];
}