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

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