Skip to content

Commit

Permalink
Disable R (libjpeg-turbo fails to build for x86_64-musl)
Browse files Browse the repository at this point in the history
  • Loading branch information
angerman committed Apr 15, 2024
1 parent 4cb2af0 commit f44273c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion static.nix
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ pkgs.mkShell (rec {
jq
yq-go
] ++ lib.optionals withIOGFull [
(if pkgs.stdenv.hostPlatform.isAarch64 then null else R) # for plutus; but unavailable for static/aarch64
# for plutus; but unavailable for static/aarch64, or static even.
# R fails in almost any direction. For now, we just disable it.
(if (pkgs.stdenv.hostPlatform.isAarch64 || pkgs.stdenv.hostPlatform.isMusl) then null else R)
postgresql # for db-sync
]);

Expand Down

0 comments on commit f44273c

Please sign in to comment.