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

mkDerivation {
  name = "kpty";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ kcoreaddons ki18n qtbase ];
  outputs = [ "out" "dev" ];
}