summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorSymphorien Gibol <symphorien+git@xlumurb.eu>2020-10-25 16:09:56 +0100
committerSymphorien Gibol <symphorien+git@xlumurb.eu>2021-01-17 11:13:54 +0100
commitd671677eab09fcd18c3cdac72849b8eb86efe2f4 (patch)
tree1ceef28cf7dace3529e330e01ba2f1413e2e9eb5 /pkgs/applications/networking/mailreaders
parente44b3c518793fcd742ed432dcfe1a700c4825716 (diff)
nixos: rework evolution-data-server module
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/evolution/evolution/wrapper.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/mailreaders/evolution/evolution/wrapper.nix b/pkgs/applications/networking/mailreaders/evolution/evolution/wrapper.nix
index 4f5278fce97f..050082c6f933 100644
--- a/pkgs/applications/networking/mailreaders/evolution/evolution/wrapper.nix
+++ b/pkgs/applications/networking/mailreaders/evolution/evolution/wrapper.nix
@@ -1,8 +1,8 @@
-{ lib, makeWrapper, symlinkJoin, evolution, evolution-ews, gnome3 }:
+{ lib, makeWrapper, symlinkJoin, gnome3, plugins }:
symlinkJoin {
name = "evolution-with-plugins";
- paths = [ evolution evolution-ews gnome3.evolution-data-server];
+ paths = [ gnome3.evolution-data-server ] ++ plugins;
buildInputs = [ makeWrapper ];
@@ -34,7 +34,7 @@ symlinkJoin {
fixSymlink $out/share/dbus-1/service
fixSymlink $out/lib/systemd/user
for i in $out/share/dbus-1/services/*.service $out/lib/systemd/user/*.service; do
- echo fixing service file $i
+ echo fixing service file $i to point to $out
sed -i "s@/nix/store/[^/]*/@$out/@" $i
done
'';