3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #24077 from MasseGuillaume/cre2

cre2: init at 0.3.0
This commit is contained in:
ndowens 2017-03-19 16:59:06 -05:00 committed by GitHub
commit 6359bf1895
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ stdenv, fetchFromGitHub, autoreconfHook,
libtool, pkgconfig, re2, texinfo }:
stdenv.mkDerivation rec {
name = "cre2-${version}";
version = "0.3.0";
src = fetchFromGitHub {
owner = "marcomaggi";
repo = "cre2";
rev = version;
sha256 = "12yrdad87jjqrhbqm02hzsayan2402vf61a9x1b2iabv6d1c1bnj";
};
nativeBuildInputs = [
autoreconfHook
libtool
pkgconfig
];
buildInputs = [ re2 texinfo ];
NIX_LDFLAGS="-lre2 -lpthread";
configureFlags = [
"--enable-maintainer-mode"
];
meta = with stdenv.lib; {
homepage = http://marcomaggi.github.io/docs/cre2.html;
description = "C Wrapper for RE2";
license = licenses.bsd3;
platforms = platforms.all;
};
}

View file

@ -7199,6 +7199,8 @@ with pkgs;
cracklib = callPackage ../development/libraries/cracklib { };
cre2 = callPackage ../development/libraries/cre2 { };
cryptopp = callPackage ../development/libraries/crypto++ { };
curlcpp = callPackage ../development/libraries/curlcpp { };