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

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