about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorShyim <s.sayakci@shopware.com>2024-05-01 21:04:19 +0200
committerGitHub <noreply@github.com>2024-05-01 21:04:19 +0200
commit3a0b4dffecc0a853e09d892e25d075fb0fedafda (patch)
tree9aa1791a7432b38aec475243296c2bf69c090d4a /pkgs/servers
parenteaa057d26874f84a92fa5df99e4815a9fac705ee (diff)
typesense: fix platforms attribute
Co-authored-by: Pol Dellaiera <pol.dellaiera@protonmail.com>
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/search/typesense/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/search/typesense/default.nix b/pkgs/servers/search/typesense/default.nix
index cfcb7749b0745..7a4256d81278b 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 ];
   };
 }