summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-08-29 03:00:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-08-29 03:00:00 -0500
commitf24c729196a36aa16d87d14e6203c57abe946252 (patch)
tree9ca4e9bf96b3cce3abbaf321a4ce52a463908e07 /pkgs/servers
parent1f3aa24274b8628c799446d577b34802d1470846 (diff)
downloadnixpkgs-f24c729196a36aa16d87d14e6203c57abe946252.tar
nixpkgs-f24c729196a36aa16d87d14e6203c57abe946252.tar.gz
nixpkgs-f24c729196a36aa16d87d14e6203c57abe946252.tar.bz2
nixpkgs-f24c729196a36aa16d87d14e6203c57abe946252.tar.lz
nixpkgs-f24c729196a36aa16d87d14e6203c57abe946252.tar.xz
nixpkgs-f24c729196a36aa16d87d14e6203c57abe946252.tar.zst
nixpkgs-f24c729196a36aa16d87d14e6203c57abe946252.zip
postgresqlPackages.plv8: narrow platforms to x86_64-linux
plv8 uses a custom version v8 version, which is reported to only build
on x86_64-linux. The next major version plv8 should drop the custom v8.
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/sql/postgresql/ext/plv8.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/plv8.nix b/pkgs/servers/sql/postgresql/ext/plv8.nix
index b4f4c357d42..9f88f9de045 100644
--- a/pkgs/servers/sql/postgresql/ext/plv8.nix
+++ b/pkgs/servers/sql/postgresql/ext/plv8.nix
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
     description = "V8 Engine Javascript Procedural Language add-on for PostgreSQL";
     homepage = "https://plv8.github.io/";
     maintainers = with maintainers; [ volth ];
-    platforms = platforms.linux;
+    platforms = [ "x86_64-linux" ];
     license = licenses.postgresql;
   };
 }