From e3793ff488bf6b0027bb73bbdda602d62af2525d Mon Sep 17 00:00:00 2001 From: Moritz Angermann Date: Sat, 15 Feb 2025 13:56:47 +0900 Subject: [PATCH] Update musl.nix (enableSystemd -> systemdSupport) This was changed in nixpkgs. We might be able to just outright ignore this, as it tires to detect systemd based on available libraries. This is just more explicit and tries to shield us against musl/systemd --- overlays/musl.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlays/musl.nix b/overlays/musl.nix index e13a5fbd47..89dddc5093 100644 --- a/overlays/musl.nix +++ b/overlays/musl.nix @@ -37,7 +37,7 @@ final: prev: prev.lib.optionalAttrs prev.stdenv.hostPlatform.isMusl ({ NIX_LDFLAGS = "--push-state --as-needed -lstdc++ --pop-state"; # without this collate.icu.utf8, and foreign_data will fail. LC_CTYPE = "C"; - })).override { enableSystemd = false; gssSupport = false; }; + })).override { systemdSupport = false; gssSupport = false; }; openssl = prev.openssl.override { static = true; };