summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-nix.nix
diff options
context:
space:
mode:
authorMichael Alan Dorman <mdorman@ironicdesign.com>2018-06-05 20:52:33 -0400
committerPeter Simons <simons@cryp.to>2018-06-07 15:22:16 +0200
commitb7a0c60e8b4eaa44b4bd7b4dc4ff077cbc0cb81c (patch)
treea33b514a5402ce99779744723fae1abf98fafd64 /pkgs/development/haskell-modules/configuration-nix.nix
parent2558c411927faccaf68b8acf2f0718daf2f8c891 (diff)
downloadnixlib-b7a0c60e8b4eaa44b4bd7b4dc4ff077cbc0cb81c.tar
nixlib-b7a0c60e8b4eaa44b4bd7b4dc4ff077cbc0cb81c.tar.gz
nixlib-b7a0c60e8b4eaa44b4bd7b4dc4ff077cbc0cb81c.tar.bz2
nixlib-b7a0c60e8b4eaa44b4bd7b4dc4ff077cbc0cb81c.tar.lz
nixlib-b7a0c60e8b4eaa44b4bd7b4dc4ff077cbc0cb81c.tar.xz
nixlib-b7a0c60e8b4eaa44b4bd7b4dc4ff077cbc0cb81c.tar.zst
nixlib-b7a0c60e8b4eaa44b4bd7b4dc4ff077cbc0cb81c.zip
dbus-hslogger, status-notifier-item: specify dbus version
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-nix.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 41d6b5ba83e2..a1f353e070a9 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -146,6 +146,10 @@ self: super: builtins.intersectAttrs super {
   gtk-traymanager = addPkgconfigDepend super.gtk-traymanager pkgs.gtk3;
   taffybar = (addPkgconfigDepend super.taffybar pkgs.gtk3).override { dbus = self.dbus_1_0_1; };
 
+  # Specify needed dbus version
+  dbus-hslogger = super.dbus-hslogger.override { dbus = self.dbus_1_0_1; };
+  status-notifier-item = super.status-notifier-item.override { dbus = self.dbus_1_0_1; };
+
   # Add necessary reference to gtk3 package
   gi-dbusmenugtk3 = addPkgconfigDepend super.gi-dbusmenugtk3 pkgs.gtk3;