Unverified Commit 2464fb3d authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

anytype: Throw on unsupported systems (#390170)

parents 8dbd13e9 972cb1ed
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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;