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

16 lines
435 B
Nix
Raw Normal View History

{
kdeFramework, lib, copyPathsToStore,
extra-cmake-modules, kdoctools,
kconfig, kcrash, ki18n, kio, kservice, kwindowsystem
2016-04-21 15:32:21 +00:00
}:
kdeFramework {
name = "kinit";
2016-04-28 15:55:29 +00:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2016-04-28 15:55:29 +00:00
propagatedBuildInputs = [
kconfig kcrash ki18n kio kservice kwindowsystem
2016-04-28 15:55:29 +00:00
];
2016-04-21 15:32:21 +00:00
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
}