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

# TODO: setuid wrapper

kdeFramework {
  name = "kinit";
  nativeBuildInputs = [ extra-cmake-modules kdoctools libcap.out ];
  buildInputs = [ kconfig kcrash kservice libcap ];
  propagatedBuildInputs = [ ki18n kio kwindowsystem ];
  patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}