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

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