summary refs log tree commit diff
path: root/pkgs/applications/kde
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2021-05-11 15:33:42 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2021-05-12 05:43:00 -0500
commit0f35ba5af92595be896b782ac917ce253d3a8cd4 (patch)
tree5e5869efb9c58b2dcda05915c3b53e0207177fa1 /pkgs/applications/kde
parentbf547e3a51c801d7b47481c168b7deb983dae61f (diff)
downloadnixpkgs-0f35ba5af92595be896b782ac917ce253d3a8cd4.tar
nixpkgs-0f35ba5af92595be896b782ac917ce253d3a8cd4.tar.gz
nixpkgs-0f35ba5af92595be896b782ac917ce253d3a8cd4.tar.bz2
nixpkgs-0f35ba5af92595be896b782ac917ce253d3a8cd4.tar.lz
nixpkgs-0f35ba5af92595be896b782ac917ce253d3a8cd4.tar.xz
nixpkgs-0f35ba5af92595be896b782ac917ce253d3a8cd4.tar.zst
nixpkgs-0f35ba5af92595be896b782ac917ce253d3a8cd4.zip
ktnef: remove kdelibs4support dependency
Diffstat (limited to 'pkgs/applications/kde')
-rw-r--r--pkgs/applications/kde/ktnef.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/kde/ktnef.nix b/pkgs/applications/kde/ktnef.nix
index c264e0b53ca..4a29acd1e7c 100644
--- a/pkgs/applications/kde/ktnef.nix
+++ b/pkgs/applications/kde/ktnef.nix
@@ -1,7 +1,7 @@
 {
   mkDerivation, lib, kdepimTeam,
   extra-cmake-modules, kdoctools,
-  kcalendarcore, kcalutils, kcontacts, kdelibs4support
+  kcalendarcore, kcalutils, kcontacts
 }:
 
 mkDerivation {
@@ -12,7 +12,7 @@ mkDerivation {
   };
   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
   propagatedBuildInputs = [
-    kcalendarcore kcalutils kcontacts kdelibs4support
+    kcalendarcore kcalutils kcontacts
   ];
   outputs = [ "out" "dev" ];
 }