From e26bc2cfd87a41cdc25cc53044248051e127bc2d Mon Sep 17 00:00:00 2001 From: Kosyrev Serge Date: Tue, 18 Jan 2022 13:21:21 +0300 Subject: [PATCH] packages: disable systemd for statically-linked cardano-tracer --- nix/haskell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/haskell.nix b/nix/haskell.nix index f2de420f1b9..3dc5a6534e9 100644 --- a/nix/haskell.nix +++ b/nix/haskell.nix @@ -187,6 +187,7 @@ let # systemd can't be statically linked packages.cardano-config.flags.systemd = !pkgs.stdenv.hostPlatform.isMusl; packages.cardano-node.flags.systemd = !pkgs.stdenv.hostPlatform.isMusl; + packages.cardano-tracer.flags.systemd = !pkgs.stdenv.hostPlatform.isMusl; }) # Musl libc fully static build ({ pkgs, ... }: lib.mkIf pkgs.stdenv.hostPlatform.isMusl (let