From 26f7e301327d1bf080d691978d2da368622ea19e Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Tue, 1 Aug 2023 23:00:04 -0500 Subject: [PATCH] postgresqlPackages.plv8: build on aarch64-linux This might have been broken in days of yore, but it seems to work fine now (reasonably so, since we use the system version of v8.) Signed-off-by: Austin Seipp --- pkgs/servers/sql/postgresql/ext/plv8/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/sql/postgresql/ext/plv8/default.nix b/pkgs/servers/sql/postgresql/ext/plv8/default.nix index e4492c4e5186..2c4989711cce 100644 --- a/pkgs/servers/sql/postgresql/ext/plv8/default.nix +++ b/pkgs/servers/sql/postgresql/ext/plv8/default.nix @@ -136,7 +136,7 @@ stdenv.mkDerivation (finalAttrs: { description = "V8 Engine Javascript Procedural Language add-on for PostgreSQL"; homepage = "https://plv8.github.io/"; maintainers = with maintainers; [ marsam ]; - platforms = [ "x86_64-linux" ]; + platforms = [ "x86_64-linux" "aarch64-linux" ]; license = licenses.postgresql; broken = postgresql.jitSupport; };