Unverified Commit b6193390 authored by K900's avatar K900 Committed by GitHub
Browse files

Plasma 6.5 (#444055)

parents b149d260 15729ec4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -91,6 +91,7 @@ in
          kio-admin # managing files as admin
          kio-extras # stuff for MTP, AFC, etc
          kio-fuse # fuse interface for KIO
          knighttime # night mode switching daemon
          kpackage # provides kpackagetool tool
          kservice # provides kbuildsycoca6 tool
          kunifiedpush # provides a background service and a KCM
@@ -266,6 +267,7 @@ in
    services.udisks2.enable = true;
    services.upower.enable = config.powerManagement.enable;
    services.libinput.enable = mkDefault true;
    services.geoclue2.enable = mkDefault true;

    # Extra UDEV rules used by Solid
    services.udev.packages = [
+2 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  mkKdeDerivation,
  qt5compat,
  qttools,
  kauth,
  acl,
  attr,
}:
@@ -16,6 +17,7 @@ mkKdeDerivation {
  extraBuildInputs = [
    qt5compat
    qttools
    kauth
    acl
    attr
  ];
+2 −0
Original line number Diff line number Diff line
{
  mkKdeDerivation,
  pkg-config,
  gpgme,
  libgcrypt,
  libsecret,
  kdoctools,
@@ -13,6 +14,7 @@ mkKdeDerivation {
  ];

  extraBuildInputs = [
    gpgme
    libgcrypt
    libsecret
    kdoctools
+6 −2
Original line number Diff line number Diff line
@@ -2,9 +2,10 @@
  lib,
  mkKdeDerivation,
  replaceVars,
  qtdeclarative,
  kauth,
  samba,
  shadow,
  qtdeclarative,
}:
mkKdeDerivation {
  pname = "kdenetwork-filesharing";
@@ -19,7 +20,10 @@ mkKdeDerivation {
    ./samba-hint.patch
  ];

  extraBuildInputs = [ qtdeclarative ];
  extraBuildInputs = [
    qtdeclarative
    kauth
  ];

  # We can't actually install samba via PackageKit, so let's not confuse users any more than we have to
  extraCmakeFlags = [ "-DSAMBA_INSTALL=OFF" ];
+0 −2
Original line number Diff line number Diff line
{
  mkKdeDerivation,
  qtsvg,
  qcoro,
}:
mkKdeDerivation {
  pname = "kontrast";

  extraBuildInputs = [
    qtsvg
    qcoro
  ];
  meta.mainProgram = "kontrast";
}
Loading