Unverified Commit 3a0b4dff authored by Shyim's avatar Shyim Committed by GitHub
Browse files

typesense: fix platforms attribute

parent eaa057d2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ stdenv.mkDerivation {
    #     This is where I stopped trying for now.
    # XXX: retry once typesense has officially released their bazel based build.
    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
    platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
    platforms = lib.platforms.linux ++ lib.platforms.darwin;
    maintainers = with maintainers; [ oddlama ];
  };
}