summary refs log blame commit diff
path: root/pkgs/applications/kde/ksystemlog.nix
blob: bec92d55966d8a62d077bc3987ca4a7455c5cb20 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                
{
  mkDerivation, lib,
  extra-cmake-modules, gettext, kdoctools,
  karchive, kconfig, kio
}:

mkDerivation {
  name = "ksystemlog";

  nativeBuildInputs = [ extra-cmake-modules gettext kdoctools ];
  propagatedBuildInputs = [ karchive kconfig kio ];

  meta = with lib; {
    license = with licenses; [ gpl2 ];
    maintainers = with maintainers; [ peterhoeg ];
  };
}