From a2e92ff6ad2c0040ccfbd712e2088fc4010c53eb Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Thu, 4 Nov 2021 08:41:13 +0000 Subject: [PATCH] pkgsMusl.redis: enable systemd support We previously weren't able to build systemd for Musl, but now we can! (But not statically.) So there's no longer any reason to have systemd support in Redis disabled by default for pkgsMusl. --- pkgs/servers/nosql/redis/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/nosql/redis/default.nix b/pkgs/servers/nosql/redis/default.nix index 351a2cb3c2a..af1d1d37106 100644 --- a/pkgs/servers/nosql/redis/default.nix +++ b/pkgs/servers/nosql/redis/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchurl, lua, pkg-config, nixosTests -, withSystemd ? stdenv.isLinux && !stdenv.hostPlatform.isMusl, systemd +, withSystemd ? stdenv.isLinux && !stdenv.hostPlatform.isStatic, systemd # dependency ordering is broken at the moment when building with openssl , tlsSupport ? !stdenv.hostPlatform.isStatic, openssl }: