From c1da476a8815bb9c618e78bd85d54f8825f788b7 Mon Sep 17 00:00:00 2001 From: Luke Worth Date: Thu, 1 Aug 2019 08:21:07 +1000 Subject: [PATCH] postgis: match platform compatibility with postgres --- pkgs/servers/sql/postgresql/ext/postgis.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/sql/postgresql/ext/postgis.nix b/pkgs/servers/sql/postgresql/ext/postgis.nix index aa31d3163c8..63b8a39b0e2 100644 --- a/pkgs/servers/sql/postgresql/ext/postgis.nix +++ b/pkgs/servers/sql/postgresql/ext/postgis.nix @@ -70,6 +70,6 @@ stdenv.mkDerivation rec { homepage = https://postgis.net/; license = licenses.gpl2; maintainers = [ maintainers.marcweber ]; - platforms = platforms.all; + inherit (postgresql.meta) platforms; }; }