nixpkgs/pkgs/development/libraries/pcre2/default.nix
R. RyanTM dafc45800a pcre2: 10.32 -> 10.33
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pcre2/versions
2019-05-04 17:53:34 +02:00

33 lines
769 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "pcre2-${version}";
version = "10.33";
src = fetchurl {
url = "https://ftp.pcre.org/pub/pcre/${name}.tar.bz2";
sha256 = "1anqi7vpbfzag7imccrc6di1zl5rl63ab7rfpmajpw6d1kzlsl9m";
};
configureFlags = [
"--enable-pcre2-16"
"--enable-pcre2-32"
"--enable-jit"
];
outputs = [ "bin" "dev" "out" "doc" "man" "devdoc" ];
doCheck = false; # fails 1 out of 3 tests, looks like a bug
postFixup = ''
moveToOutput bin/pcre2-config "$dev"
'';
meta = with stdenv.lib; {
description = "Perl Compatible Regular Expressions";
homepage = http://www.pcre.org/;
license = licenses.bsd3;
maintainers = with maintainers; [ ttuegel ];
platforms = platforms.all;
};
}