Merge pull request #27405 from rvl/postgresql-xml

postgresql: fix nixos tests and add xml support
This commit is contained in:
Franz Pletz
2017-07-20 20:31:38 +02:00
committed by GitHub
2 changed files with 16 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
{ lib, stdenv, glibc, fetchurl, zlib, readline, libossp_uuid, openssl, makeWrapper }:
{ lib, stdenv, glibc, fetchurl, zlib, readline, libossp_uuid, openssl, libxml2, makeWrapper }:
let
@@ -15,7 +15,7 @@ let
setOutputFlags = false; # $out retains configureFlags :-/
buildInputs =
[ zlib readline openssl makeWrapper ]
[ zlib readline openssl libxml2 makeWrapper ]
++ lib.optionals (!stdenv.isDarwin) [ libossp_uuid ];
enableParallelBuilding = true;
@@ -24,6 +24,7 @@ let
configureFlags = [
"--with-openssl"
"--with-libxml"
"--sysconfdir=/etc"
"--libdir=$(lib)/lib"
]