Skip to content

Commit

Permalink
fun4all: disable on aarch64-linux
Browse files Browse the repository at this point in the history
  • Loading branch information
veprbl committed Jan 28, 2025
1 parent 44bc2fc commit 85134de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@
'';
};

} // lib.optionalAttrs (system != "aarch64-linux") {
fun4all-env = pkgs.mkShell rec {
buildInputs = with self.packages.${system}; [
fun4all
Expand Down
3 changes: 3 additions & 0 deletions pkgs/fun4all/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -692,6 +692,9 @@ sphenix_packages = with extra_deps; let geant4 = extra_deps.geant4_10_6_2; in en
rm "$out/nix-support/setup-hook" || true
substituteAll "$setupHook" "$out/nix-support/setup-hook"
'';

# hide from the package set as Vc is not supported on aarch64-linux
meta.broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64);
};
});

Expand Down

0 comments on commit 85134de

Please sign in to comment.