summary refs log blame commit diff
path: root/pkgs/development/libraries/pcre/default.nix
blob: 3d3385c83f83ee9778efc440054e114dc8740cf4 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                    
 
                     

                    
                  

                                                                    
    
  
                     
                                                                   

                                                        




                                                                      
 
{stdenv, fetchurl, unicodeSupport ? false, cplusplusSupport ? true}:

stdenv.mkDerivation {
  name = "pcre-7.8";
  
  src = fetchurl {
    url = mirror://sourceforge/pcre/pcre-7.8.tar.bz2;
    sha256 = "1zsqk352mx2zklf9bgpg9d88ckfdssbbbiyslhrycfckw8m3qpvr";
  };
  
  configureFlags = ''
    ${if unicodeSupport then "--enable-unicode-properties" else ""}
    ${if !cplusplusSupport then "--disable-cpp" else ""}
  '';

  meta = {
    homepage = http://www.pcre.org/;
    description = "A library for Perl Compatible Regular Expressions";
  };
}