Unverified Commit 972cb1ed authored by David Chocholatý's avatar David Chocholatý
Browse files

anytype: Throw on unsupported systems

parent 4d39a65f
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;