naps2: mark as broken on aarch64

This commit is contained in:
Elian Doran 2024-04-07 11:02:32 +03:00
parent 0c7210fca7
commit 5bc4c2d436
No known key found for this signature in database

View file

@ -1,4 +1,5 @@
{ lib { lib
, stdenv
, buildDotnetModule , buildDotnetModule
, dotnetCorePackages , dotnetCorePackages
, fetchFromGitHub , fetchFromGitHub
@ -54,6 +55,7 @@ buildDotnetModule rec {
maintainers = with lib.maintainers; [ eliandoran ]; maintainers = with lib.maintainers; [ eliandoran ];
platforms = lib.platforms.linux; platforms = lib.platforms.linux;
mainProgram = "naps2"; mainProgram = "naps2";
broken = stdenv.isAarch64; # Google.Protobuf.Tools dependency fails to build.
}; };
} }