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

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