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

mkDerivation {
  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);
}