From 80056077a9e28893c6eec4aaa014e0982f56525f Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Mon, 4 Apr 2022 11:52:41 -0400 Subject: [PATCH] MacOs needs libiconv specified directly --- nix/dbt-core/overlay.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nix/dbt-core/overlay.nix b/nix/dbt-core/overlay.nix index 1ee17b2..4fc115a 100644 --- a/nix/dbt-core/overlay.nix +++ b/nix/dbt-core/overlay.nix @@ -8,6 +8,8 @@ nativeBuildInputs = with self.rustPlatform; [ cargoSetupHook maturinBuildHook ]; + # some platforms (MacOS) require this + buildInputs = [ self.libiconv ]; src = pyself.fetchPypi { inherit pname version; sha256 = "sha256-WGcuNvq5iMhJppNAWSDuGEIfJyRcSOX57PSWNp7TGoU="; @@ -182,4 +184,4 @@ #}); }); }; - }) \ No newline at end of file + })