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.
This commit is contained in:
Mario Rodas
2019-08-29 03:00:00 -05:00
parent 1f3aa24274
commit f24c729196
2 changed files with 5 additions and 3 deletions

View File

@@ -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;
};
}