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

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