summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix
blob: 64210ca76051c13cce7f9b1f3680285c44b80a09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ kdeFramework, lib, copyPathsToStore, 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 = copyPathsToStore (lib.readPathsFromFile ./. ./series);
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}