summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.18/kinit/default.nix
blob: 5f644d7c424e2034418249fd4b8a553c066d1c27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcrash
, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap
, libcap_progs
}:

# TODO: setuid wrapper

kdeFramework {
  name = "kinit";
  nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ];
  buildInputs = [ kconfig kcrash kservice libcap ];
  propagatedBuildInputs = [ ki18n kio kwindowsystem ];
  patches = [ ./0001-kinit-libpath.patch ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}