kde-frameworks.kdesu: move to its own directory

This commit is contained in:
José Romildo Malaquias
2020-08-20 18:24:07 -03:00
parent c6743ed565
commit 7deb1c7032
3 changed files with 1 additions and 1 deletions
@@ -0,0 +1,15 @@
{
mkDerivation, lib,
extra-cmake-modules,
kcoreaddons, ki18n, kpty, kservice, qtbase,
}:
mkDerivation {
name = "kdesu";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kcoreaddons ki18n kpty kservice qtbase ];
propagatedBuildInputs = [ kpty ];
outputs = [ "out" "dev" ];
patches = [ ./kdesu-search-for-wrapped-daemon-first.patch ];
}