anytype: Throw on unsupported systems (#390170)

This commit is contained in:
Wolfgang Walther
2025-03-16 15:27:17 +00:00
committed by GitHub
@@ -28,7 +28,9 @@ let
x86_64-darwin = "darwin-amd64";
aarch64-darwin = "darwin-arm64";
}
.${stdenv.hostPlatform.system};
.${stdenv.hostPlatform.system}
or (throw "anytype-heart not supported on ${stdenv.hostPlatform.system}");
in
buildGoModule {
inherit pname version src;