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

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