nixpkgs/pkgs/development/libraries/kde-frameworks-5.13/kinit/default.nix
Thomas Tuegel 5ba93bd4c3 kf513: don't override mkDerivation
Provides a globally unique name (kdeFramework) instead of using
attribute paths as namespaces and locally overloading the mkDerivation
name.
2015-09-29 16:57:26 -05:00

25 lines
454 B
Nix

{ kdeFramework, lib
, extra-cmake-modules
, kconfig
, kcrash
, kdoctools
, ki18n
, kio
, kservice
, kwindowsystem
, libcap
, libcap_progs
}:
# TODO: setuid wrapper
kdeFramework {
name = "kinit";
nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ];
buildInputs = [ kconfig kcrash ki18n kio kservice kwindowsystem libcap ];
patches = [ ./0001-kinit-libpath.patch ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}