From 8493953e3cb488b367d207e249096a73138c5fe6 Mon Sep 17 00:00:00 2001 From: Moritz Angermann Date: Mon, 15 Apr 2024 07:46:54 +0000 Subject: [PATCH] R doesn't build for aarch64-musl --- static.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static.nix b/static.nix index a1c5a1c..56cd31f 100644 --- a/static.nix +++ b/static.nix @@ -126,7 +126,7 @@ pkgs.mkShell (rec { jq yq-go ] ++ lib.optionals withIOGFull [ - R # for plutus + (if pkgs.stdenv.hostPlatform.isAarch64 then null else R) # for plutus; but unavailable for static/aarch64 postgresql # for db-sync ]);