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

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