nixpkgs/pkgs/development/libraries/kde-frameworks-5.14/kdesu.nix

18 lines
315 B
Nix
Raw Normal View History

{ kdeFramework, lib
2015-09-27 08:02:10 -07:00
, extra-cmake-modules
, kcoreaddons
, ki18n
, kpty
, kservice
}:
kdeFramework {
2015-09-27 08:02:10 -07:00
name = "kdesu";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kcoreaddons ki18n kservice ];
propagatedBuildInputs = [ kpty ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}