summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2021-05-11 14:29:41 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2021-05-12 05:42:50 -0500
commit7a5af6a006d85e426a5d871eabbe74aa874b7311 (patch)
tree1b7958f2c01a18090d6515f77a5cada732604472
parent6b87a3f89a9d15986c25a124133405907585747b (diff)
downloadnixpkgs-7a5af6a006d85e426a5d871eabbe74aa874b7311.tar
nixpkgs-7a5af6a006d85e426a5d871eabbe74aa874b7311.tar.gz
nixpkgs-7a5af6a006d85e426a5d871eabbe74aa874b7311.tar.bz2
nixpkgs-7a5af6a006d85e426a5d871eabbe74aa874b7311.tar.lz
nixpkgs-7a5af6a006d85e426a5d871eabbe74aa874b7311.tar.xz
nixpkgs-7a5af6a006d85e426a5d871eabbe74aa874b7311.tar.zst
nixpkgs-7a5af6a006d85e426a5d871eabbe74aa874b7311.zip
baloo-widgets: remove kdelibs4support dependency
-rw-r--r--pkgs/applications/kde/baloo-widgets.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/kde/baloo-widgets.nix b/pkgs/applications/kde/baloo-widgets.nix
index 887e7ea2986..940c47a2ac8 100644
--- a/pkgs/applications/kde/baloo-widgets.nix
+++ b/pkgs/applications/kde/baloo-widgets.nix
@@ -1,7 +1,7 @@
 {
   mkDerivation, lib,
   extra-cmake-modules, kdoctools,
-  baloo, kconfig, kdelibs4support, kfilemetadata, ki18n, kio, kservice
+  baloo, kconfig, kfilemetadata, ki18n, kio, kservice
 }:
 
 mkDerivation {
@@ -12,7 +12,7 @@ mkDerivation {
   };
   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
   propagatedBuildInputs = [
-    baloo kconfig kdelibs4support kfilemetadata ki18n kio kservice
+    baloo kconfig kfilemetadata ki18n kio kservice
   ];
   outputs = [ "out" "dev" ];
 }