aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/cre2/default.nix
diff options
context:
space:
mode:
authorGuillaume Massé <masgui@gmail.com>2017-03-19 17:15:21 -0400
committerGuillaume Massé <masgui@gmail.com>2017-03-19 17:26:15 -0400
commitb00bfb0401347637e512ef56acb4e34c266209b8 (patch)
treeb695225d464cb9edb1296da760acd8a57fe46ece /pkgs/development/libraries/cre2/default.nix
parent4f2a2898f8dce3e6523d17af7be2d3d654e10a38 (diff)
cre2: init at 0.3.0
c wrapper for google's re2 regex library
Diffstat (limited to 'pkgs/development/libraries/cre2/default.nix')
-rw-r--r--pkgs/development/libraries/cre2/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/libraries/cre2/default.nix b/pkgs/development/libraries/cre2/default.nix
new file mode 100644
index 000000000000..c1fe4686ce23
--- /dev/null
+++ b/pkgs/development/libraries/cre2/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchFromGitHub, autoconf, automake,
+ 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 = [
+ autoconf
+ automake
+ libtool
+ pkgconfig
+ re2
+ texinfo
+ ];
+
+ NIX_LDFLAGS="-lre2 -lpthread";
+
+ preConfigure = "sh autogen.sh";
+
+ configureFlags = [
+ "--enable-maintainer-mode"
+ ];
+
+ meta = {
+ homepage = http://marcomaggi.github.io/docs/cre2.html;
+ description = "C Wrapper for RE2";
+ license = stdenv.lib.licenses.bsd3;
+ platforms = with stdenv.lib.platforms; all;
+ };
+}