From 46a1c497759a1e02020cd740b8e70f7736bae1d9 Mon Sep 17 00:00:00 2001 From: Sean D Gillespie Date: Thu, 10 Oct 2024 09:19:51 -0400 Subject: [PATCH] fix: postgresql static build --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index 522717db1..07c955018 100644 --- a/flake.nix +++ b/flake.nix @@ -82,6 +82,13 @@ version = "2.2.0"; }; }) + + (final: prev: { + postgresql = prev.postgresql.overrideAttrs (_: + final.lib.optionalAttrs (final.stdenv.hostPlatform.isMusl) { + doCheck = false; + }); + }) ]; };