From 83317f7d04644ad207e95c639d08e35907d3964d Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Tue, 1 Nov 2016 18:36:27 +0100 Subject: [PATCH] haskellPackages: fix libsystemd-journal --- pkgs/development/haskell-modules/configuration-common.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 384d308f1c0b..e957f90953f5 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1045,4 +1045,10 @@ self: super: { # note: the library is unmaintained, no upstream issue dataenc = doJailbreak super.dataenc; + libsystemd-journal = overrideCabal super.libsystemd-journal (old: { + # https://github.com/ocharles/libsystemd-journal/pull/17 + jailbreak = true; + librarySystemDepends = old.librarySystemDepends or [] ++ [ pkgs.systemd ]; + }); + }