summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2018-10-23 17:22:14 +0100
committerAlyssa Ross <hi@alyssa.is>2018-10-30 14:32:21 +0000
commitc6c7d55790b603db68ee43a55c20e503281eeda4 (patch)
tree1d3cbae43707310eac965892dac56716a19e656a /nixos/tests
parent94360c11e96e816f9c9ac320691c1dc7b5caf4b1 (diff)
downloadnixlib-c6c7d55790b603db68ee43a55c20e503281eeda4.tar
nixlib-c6c7d55790b603db68ee43a55c20e503281eeda4.tar.gz
nixlib-c6c7d55790b603db68ee43a55c20e503281eeda4.tar.bz2
nixlib-c6c7d55790b603db68ee43a55c20e503281eeda4.tar.lz
nixlib-c6c7d55790b603db68ee43a55c20e503281eeda4.tar.xz
nixlib-c6c7d55790b603db68ee43a55c20e503281eeda4.tar.zst
nixlib-c6c7d55790b603db68ee43a55c20e503281eeda4.zip
postgresql*: use underscores in version numbers
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/postgis.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/postgis.nix b/nixos/tests/postgis.nix
index 0ff880e7aa52..2a9b477bf237 100644
--- a/nixos/tests/postgis.nix
+++ b/nixos/tests/postgis.nix
@@ -9,7 +9,7 @@ import ./make-test.nix ({ pkgs, ...} : {
       { pkgs, ... }:
 
       {
-        services.postgresql = let mypg = pkgs.postgresql10; in {
+        services.postgresql = let mypg = pkgs.postgresql_10; in {
             enable = true;
             package = mypg;
             extraPlugins = [ (pkgs.postgis.override { postgresql = mypg; }) ];