nixpkgs/pkgs/development/libraries/kde-frameworks-5.14/kdesu.nix
2015-10-05 13:08:25 -05:00

18 lines
315 B
Nix

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