summary refs log tree commit diff
path: root/pkgs/development/interpreters/php
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-05-01 14:41:52 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2016-05-03 16:04:40 +0200
commitc0f4361902d786459b29d69913f606a4a7f92d1c (patch)
tree7c851dc667ee2f7d9dedd9f7878ca3aaea7e157c /pkgs/development/interpreters/php
parent70ac1ec4224e2b85d01c12f5054e50828b982c00 (diff)
downloadnixlib-c0f4361902d786459b29d69913f606a4a7f92d1c.tar
nixlib-c0f4361902d786459b29d69913f606a4a7f92d1c.tar.gz
nixlib-c0f4361902d786459b29d69913f606a4a7f92d1c.tar.bz2
nixlib-c0f4361902d786459b29d69913f606a4a7f92d1c.tar.lz
nixlib-c0f4361902d786459b29d69913f606a4a7f92d1c.tar.xz
nixlib-c0f4361902d786459b29d69913f606a4a7f92d1c.tar.zst
nixlib-c0f4361902d786459b29d69913f606a4a7f92d1c.zip
php: Fix openssl module build
Diffstat (limited to 'pkgs/development/interpreters/php')
-rw-r--r--pkgs/development/interpreters/php/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix
index c9fbf5c5de6f..d6b4e03a2f66 100644
--- a/pkgs/development/interpreters/php/default.nix
+++ b/pkgs/development/interpreters/php/default.nix
@@ -154,8 +154,8 @@ let
         };
 
         openssl = {
-          configureFlags = ["--enable-openssl"];
-          buildInputs = [openssl];
+          configureFlags = ["--with-openssl"];
+          buildInputs = [openssl openssl.dev];
         };
 
         mbstring = {