plasma-pa: drop GConf dependency (#342384)

This commit is contained in:
K900
2024-09-17 07:30:54 +03:00
committed by GitHub
3 changed files with 1 additions and 5 deletions
+1 -2
View File
@@ -28,7 +28,6 @@
, lib
, config
, fetchurl
, gconf
, gsettings-desktop-schemas
}:
@@ -156,7 +155,7 @@ let
plasma-mobile = callPackage ./plasma-mobile { };
plasma-nano = callPackage ./plasma-nano { };
plasma-nm = callPackage ./plasma-nm { };
plasma-pa = callPackage ./plasma-pa.nix { inherit gconf; };
plasma-pa = callPackage ./plasma-pa.nix { };
plasma-remotecontrollers = callPackage ./plasma-remotecontrollers.nix { };
plasma-sdk = callPackage ./plasma-sdk.nix { };
plasma-systemmonitor = callPackage ./plasma-systemmonitor.nix { };
-2
View File
@@ -11,7 +11,6 @@
, plasma-framework
, qtbase
, qtdeclarative
, gconf
, glib
, libcanberra-gtk3
, libpulseaudio
@@ -22,7 +21,6 @@ mkDerivation {
pname = "plasma-pa";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
gconf
glib
libcanberra-gtk3
libpulseaudio
-1
View File
@@ -40,7 +40,6 @@ makeScopeWithSplicing' {
attrs = {
inherit libsForQt5;
inherit (pkgs) config lib fetchurl;
gconf = pkgs.gnome2.GConf;
inherit (pkgs) gsettings-desktop-schemas;
};
in (lib.makeOverridable mkPlasma5 attrs);