about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorRĂ©mi Desgrange <rdesgrange@gmail.com>2017-10-11 18:06:20 +0200
committerRemi Desgrange <rdesgrange@gmail.com>2017-10-13 09:45:25 +0200
commit8dcaa5b313165d0acb3860cab97ece62e8421162 (patch)
treeb7cc66043019b3c7516f5e04a304a2bbabea0ca5 /nixos/tests
parent659c7484d1dbfb193085586bd8db8dc6260287f1 (diff)
downloadnixlib-8dcaa5b313165d0acb3860cab97ece62e8421162.tar
nixlib-8dcaa5b313165d0acb3860cab97ece62e8421162.tar.gz
nixlib-8dcaa5b313165d0acb3860cab97ece62e8421162.tar.bz2
nixlib-8dcaa5b313165d0acb3860cab97ece62e8421162.tar.lz
nixlib-8dcaa5b313165d0acb3860cab97ece62e8421162.tar.xz
nixlib-8dcaa5b313165d0acb3860cab97ece62e8421162.tar.zst
nixlib-8dcaa5b313165d0acb3860cab97ece62e8421162.zip
postgis: add v2.4.0
Add postgis 2.4.0

doesn't remove v2.3.1. There are some big change in 2.4 that people may
don't want. see https://postgis.net/docs/release_notes.html#idm41021

fix test call

modify following recommandation of lsix
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/postgis.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/nixos/tests/postgis.nix b/nixos/tests/postgis.nix
index 1dba5c363c09..f6ce3fe38ed3 100644
--- a/nixos/tests/postgis.nix
+++ b/nixos/tests/postgis.nix
@@ -9,15 +9,11 @@ import ./make-test.nix ({ pkgs, ...} : {
       { pkgs, config, ... }:
 
       {
-        services.postgresql = let mypg = pkgs.postgresql95; in {
+        services.postgresql = let mypg = pkgs.postgresql100; in {
             enable = true;
             package = mypg;
-            extraPlugins = [ (pkgs.postgis.override { postgresql = mypg; }).v_2_2_1 ];
-            initialScript =  pkgs.writeText "postgresql-init.sql"
-          ''
-          CREATE ROLE postgres WITH superuser login createdb;
-          '';
-          };
+            extraPlugins = [ (pkgs.postgis.override { postgresql = mypg; }).v_2_4_0 ];
+        };
       };
   };