summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authormuflax <mail@muflax.com>2014-09-27 08:31:44 +0100
committermuflax <mail@muflax.com>2014-09-27 08:33:29 +0100
commit368d0b42136f02db474ae958c18cc201f3666888 (patch)
treeee874b1e744a3486307ab4d2dc0fba28852b23bb /pkgs/shells
parent9da620a7233a54e506f058bace44b0607f2fde50 (diff)
downloadnixpkgs-368d0b42136f02db474ae958c18cc201f3666888.tar
nixpkgs-368d0b42136f02db474ae958c18cc201f3666888.tar.gz
nixpkgs-368d0b42136f02db474ae958c18cc201f3666888.tar.bz2
nixpkgs-368d0b42136f02db474ae958c18cc201f3666888.tar.lz
nixpkgs-368d0b42136f02db474ae958c18cc201f3666888.tar.xz
nixpkgs-368d0b42136f02db474ae958c18cc201f3666888.tar.zst
nixpkgs-368d0b42136f02db474ae958c18cc201f3666888.zip
zsh: enable pcre
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/zsh/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/zsh/default.nix b/pkgs/shells/zsh/default.nix
index d187c50f251..5729314b3e1 100644
--- a/pkgs/shells/zsh/default.nix
+++ b/pkgs/shells/zsh/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, ncurses, coreutils }:
+{ stdenv, fetchurl, ncurses, coreutils, pcre }:
 
 let
 
@@ -19,10 +19,10 @@ stdenv.mkDerivation {
     sha256 = "1bwfz9n850pclzmzrb437icfhzv1s5pgh2dhs92f194gdkxx4936";
   };
 
-  buildInputs = [ ncurses coreutils ];
+  buildInputs = [ ncurses coreutils pcre ];
 
   preConfigure = ''
-    configureFlags="--enable-maildir-support --enable-multibyte --enable-zprofile=$out/etc/zprofile --with-tcsetpgrp"
+    configureFlags="--enable-maildir-support --enable-multibyte --enable-zprofile=$out/etc/zprofile --with-tcsetpgrp --enable-pcre"
   '';
 
   # XXX: think/discuss about this, also with respect to nixos vs nix-on-X