summary refs log tree commit diff
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2014-06-21 21:15:29 -0500
committerAustin Seipp <aseipp@pobox.com>2014-06-21 21:15:29 -0500
commit6b345e088b84e07028d46b7a887657fb316a73b3 (patch)
tree569ad10550de4d5033c19c377c711f88ed8d794b
parent1228caae9e5f525abed6061001121fbb670716a6 (diff)
downloadnixpkgs-6b345e088b84e07028d46b7a887657fb316a73b3.tar
nixpkgs-6b345e088b84e07028d46b7a887657fb316a73b3.tar.gz
nixpkgs-6b345e088b84e07028d46b7a887657fb316a73b3.tar.bz2
nixpkgs-6b345e088b84e07028d46b7a887657fb316a73b3.tar.lz
nixpkgs-6b345e088b84e07028d46b7a887657fb316a73b3.tar.xz
nixpkgs-6b345e088b84e07028d46b7a887657fb316a73b3.tar.zst
nixpkgs-6b345e088b84e07028d46b7a887657fb316a73b3.zip
php: Fix fallout from 1228caae9e5f
Signed-off-by: Austin Seipp <aseipp@pobox.com>
-rw-r--r--pkgs/development/interpreters/php/5.4.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/php/5.4.nix b/pkgs/development/interpreters/php/5.4.nix
index fd0628a6524..ed7c0a2b82e 100644
--- a/pkgs/development/interpreters/php/5.4.nix
+++ b/pkgs/development/interpreters/php/5.4.nix
@@ -171,7 +171,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
         configureFlags = ["--enable-fpm"];
       };
 
-      mssql = stdenv.lib.optional (!stdenv.isDarwin) {
+      mssql = stdenv.lib.optionalAttrs (!stdenv.isDarwin) {
         configureFlags = ["--with-mssql=${freetds}"];
         buildInputs = [freetds];
       };