summary refs log tree commit diff
diff options
context:
space:
mode:
authorRick van Schijndel <rol3517@gmail.com>2022-05-19 21:09:42 +0200
committerRick van Schijndel <rol3517@gmail.com>2022-05-29 10:56:02 +0200
commit859aa7da131edfd6cad7fe8edd4495b171a50afc (patch)
treeae9045d60fadca0c610c3df23cbfe9f617b8ca43
parente8e9cebbda8fa71089a4d707605aafa3591236e6 (diff)
downloadnixpkgs-859aa7da131edfd6cad7fe8edd4495b171a50afc.tar
nixpkgs-859aa7da131edfd6cad7fe8edd4495b171a50afc.tar.gz
nixpkgs-859aa7da131edfd6cad7fe8edd4495b171a50afc.tar.bz2
nixpkgs-859aa7da131edfd6cad7fe8edd4495b171a50afc.tar.lz
nixpkgs-859aa7da131edfd6cad7fe8edd4495b171a50afc.tar.xz
nixpkgs-859aa7da131edfd6cad7fe8edd4495b171a50afc.tar.zst
nixpkgs-859aa7da131edfd6cad7fe8edd4495b171a50afc.zip
CHOWTapeModel: mark broken on aarch64
-rw-r--r--pkgs/applications/audio/CHOWTapeModel/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/audio/CHOWTapeModel/default.nix b/pkgs/applications/audio/CHOWTapeModel/default.nix
index 3eff818cca9..c36de2cb878 100644
--- a/pkgs/applications/audio/CHOWTapeModel/default.nix
+++ b/pkgs/applications/audio/CHOWTapeModel/default.nix
@@ -74,5 +74,8 @@ stdenv.mkDerivation rec {
     license = with licenses; [ gpl3Only ];
     maintainers = with maintainers; [ magnetophon ];
     platforms = platforms.linux;
+    # error: 'vvtanh' was not declared in this scope; did you mean 'tanh'?
+    # error: no matching function for call to 'juce::dsp::SIMDRegister<double>::SIMDRegister(xsimd::simd_batch_traits<xsimd::batch<double, 2> >::batch_bool_type)'
+    broken = stdenv.isAarch64; # since 2021-12-27 on hydra (update to 2.10): https://hydra.nixos.org/build/162558991
   };
 }