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

18 lines
477 B
Nix
Raw Normal View History

2015-10-10 18:50:36 +02:00
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcrash
, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap
2015-09-27 17:02:10 +02:00
, libcap_progs
}:
# TODO: setuid wrapper
kdeFramework {
2015-09-27 17:02:10 +02:00
name = "kinit";
nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ];
2015-10-10 19:42:19 +02:00
buildInputs = [ kconfig kcrash kservice libcap ];
propagatedBuildInputs = [ ki18n kio kwindowsystem ];
2015-09-27 17:02:10 +02:00
patches = [ ./0001-kinit-libpath.patch ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}