From 3a0b4dffecc0a853e09d892e25d075fb0fedafda Mon Sep 17 00:00:00 2001 From: Shyim Date: Wed, 1 May 2024 21:04:19 +0200 Subject: [PATCH] typesense: fix platforms attribute Co-authored-by: Pol Dellaiera --- pkgs/servers/search/typesense/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/search/typesense/default.nix b/pkgs/servers/search/typesense/default.nix index cfcb7749b074..7a4256d81278 100644 --- a/pkgs/servers/search/typesense/default.nix +++ b/pkgs/servers/search/typesense/default.nix @@ -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 ]; }; }