pcre2: init at 10.20

This commit is contained in:
Thomas Tuegel 2015-10-09 19:08:25 -05:00
parent 3436c78fc3
commit 7061b6819a
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "pcre2-10.20";
src = fetchurl {
url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.20.tar.bz2";
sha256 = "0yj8mm9ll9zj3v47rvmmqmr1ybxk72rr2lym3rymdsf905qjhbik";
};
meta = {
description = "Perl Compatible Regular Expressions";
homepage = "http://www.pcre.org/";
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.ttuegel ];
platforms = stdenv.lib.platforms.all;
};
}

View file

@ -7824,6 +7824,8 @@ let
unicodeSupport = config.pcre.unicode or true;
};
pcre2 = callPackage ../development/libraries/pcre2 { };
pdf2xml = callPackage ../development/libraries/pdf2xml {} ;
phonon = callPackage ../development/libraries/phonon/qt4 {};