nixpkgs/pkgs/development/libraries/kde-frameworks/kservice/default.nix

15 lines
483 B
Nix
Raw Normal View History

{
2016-10-04 17:08:05 +02:00
kdeFramework, lib, copyPathsToStore,
bison, ecm, flex,
kconfig, kcoreaddons, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem
2016-04-21 17:32:21 +02:00
}:
kdeFramework {
name = "kservice";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-10-04 17:08:05 +02:00
propagatedNativeBuildInputs = [ bison ecm flex ];
2016-04-21 17:32:21 +02:00
nativeBuildInputs = [ kdoctools ];
propagatedBuildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ki18n kwindowsystem ];
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
2016-04-21 17:32:21 +02:00
}