haskellPackages.hb3sum: only supported on x86

This commit is contained in:
Dennis Gosnell 2023-09-09 13:30:22 -04:00
parent df41622d86
commit 3a5a22091e
2 changed files with 2 additions and 2 deletions

View file

@ -610,7 +610,6 @@ unsupported-platforms:
gtk-sni-tray: [ platforms.darwin ]
h-raylib: [ platforms.darwin ] # depends on mesa
haskell-snake: [ platforms.darwin ]
hb3sum: [ aarch64-linux ] # depends on blake3, which is not supported on aarch64-linux
hcwiid: [ platforms.darwin ]
HDRUtils: [ platforms.darwin ]
hidapi: [ platforms.darwin ]
@ -711,6 +710,7 @@ supported-platforms:
gtk3-mac-integration: [ platforms.darwin ]
halide-haskell: [ platforms.linux ]
halide-JuicyPixels: [ platforms.linux ]
hb3sum: [ platforms.x86 ] # due to blake3
hommage-ds: [ platforms.windows ]
hpapi: [ platforms.linux ] # limited by pkgs.papi
hsignal: [ platforms.x86 ] # -msse2

View file

@ -139832,7 +139832,7 @@ self: {
executableHaskellDepends = [ base blake3 bytestring mmap ];
description = "A command line tool to compute BLAKE3 hashes";
license = lib.licenses.agpl3Only;
badPlatforms = [ "aarch64-linux" ];
platforms = lib.platforms.x86;
mainProgram = "hb3sum";
}) {};