about summary refs log tree commit diff
path: root/modules/programs
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-09-11 17:13:32 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-09-11 17:13:32 +0200
commitcc2cc6e4917a32e3d373ecc561c90bac35a81c52 (patch)
treea7947546e320017af4235d8b050fdb8dfd787667 /modules/programs
parent39017312b152f5a89817abebe400e4fb2f9093c6 (diff)
modules/gnupg: Fix path to libsystemd.so
The systemd library has been splitted off into a different output in
NixOS/nixpkgs@78178d5854901e1b17a14bce3fe43515984b7b91.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'modules/programs')
-rw-r--r--modules/programs/gnupg/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/programs/gnupg/default.nix b/modules/programs/gnupg/default.nix
index 63002cc7..1b220a72 100644
--- a/modules/programs/gnupg/default.nix
+++ b/modules/programs/gnupg/default.nix
@@ -33,7 +33,7 @@ let
     inherit pinentryWrapper;
   } ''
     cc -Wall -shared -std=c11 \
-      -DLIBSYSTEMD=\"${pkgs.systemd}/lib/libsystemd.so\" \
+      -DLIBSYSTEMD=\"${pkgs.systemd.lib}/lib/libsystemd.so\" \
       -DPINENTRY_WRAPPER=\"$pinentryWrapper\" \
       $(pkg-config --cflags libsystemd) -ldl \
       "${./agent-wrapper.c}" -o "$out" -fPIC