nixpkgs-suyu/pkgs/development/libraries/kde-frameworks-5.16/kdesu.nix
2015-11-23 06:39:04 -06:00

13 lines
311 B
Nix

{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n, kpty
, kservice
}:
kdeFramework {
name = "kdesu";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kcoreaddons kservice ];
propagatedBuildInputs = [ ki18n kpty ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}