haskellPackages.hb3sum: disable on aarch64-linux because of dep

This commit is contained in:
Dennis Gosnell 2022-08-09 16:05:10 +09:00
parent e94f52c385
commit b1a72782cf
2 changed files with 2 additions and 0 deletions

View File

@ -446,6 +446,7 @@ unsupported-platforms:
grid-proto: [ platforms.darwin ]
gtk-sni-tray: [ platforms.darwin ]
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 ]

View File

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