gromacs: fix double precission build on aarch64

main
Markus Kowalewski 3 years ago
parent 78cb77b29d
commit 5cfe3c4e82
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB
  1. 2
      pkgs/applications/science/molecular-dynamics/gromacs/default.nix

@ -14,7 +14,7 @@ let
if stdenv.hostPlatform.system == "i686-linux" then "SSE2" else
if stdenv.hostPlatform.system == "x86_64-linux" then "SSE4.1" else
if stdenv.hostPlatform.system == "x86_64-darwin" then "SSE4.1" else
if stdenv.hostPlatform.system == "aarch64-linux" then "ARM_NEON" else
if stdenv.hostPlatform.system == "aarch64-linux" then "ARM_NEON_ASIMD" else
"None";
in stdenv.mkDerivation rec {

Loading…
Cancel
Save