summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2019-01-03 22:03:34 +0000
committerChristopher Baines <christopher.baines@digital.cabinet-office.gov.uk>2019-02-22 14:33:54 +0000
commit98c1c027c47578ff313b31d4e58e0df4b17adfe4 (patch)
treed904e368d74b0218e33419df74c55c744492d79d
parenta3999400b21d38601915d2108bab3700a1c96702 (diff)
downloadgnu-guix-wip-postgresql-ssl.tar
gnu-guix-wip-postgresql-ssl.tar.gz
gnu: postgresql: Build with openssl support.wip-postgresql-ssl
* gnu/packages/databases.scm (postgresql)[arguments]: Add --with-openssl to [inputs]: Add openssl.
-rw-r--r--gnu/packages/databases.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 8775b8fa49..2b276bc2c2 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -754,7 +754,7 @@ as a drop-in replacement of MySQL.")
"0jv26y3f10svrjxzsgqxg956c86b664azyk2wppzpa5x11pjga38"))))
(build-system gnu-build-system)
(arguments
- `(#:configure-flags '("--with-uuid=e2fs")
+ `(#:configure-flags '("--with-uuid=e2fs" "--with-openssl")
#:phases
(modify-phases %standard-phases
(add-before 'configure 'patch-/bin/sh
@@ -773,6 +773,7 @@ as a drop-in replacement of MySQL.")
(inputs
`(("readline" ,readline)
("libuuid" ,util-linux)
+ ("openssl" ,openssl)
("zlib" ,zlib)))
(home-page "https://www.postgresql.org/")
(synopsis "Powerful object-relational database system")