nixpkgs/pkgs/development/libraries/kde-frameworks-5.13/kdesu.nix
2015-09-27 15:08:10 -05:00

18 lines
315 B
Nix

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