summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.18/kpty.nix
blob: 2e34e6f674ceef204ebc19bb0c2ee0f1798b1acc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n }:

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