jpcre2: init at 10.32.01

This commit is contained in:
Jonas Heinrich 2023-02-07 14:48:57 +01:00 committed by Yt
parent d949f94875
commit 9f4afc1dca
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, stdenv
, fetchFromGitHub
, pcre2
}:
stdenv.mkDerivation rec {
pname = "jpcre2";
version = "10.32.01";
rev = version;
src = fetchFromGitHub {
owner = "jpcre2";
repo = "jpcre2";
rev = "refs/tags/${version}";
hash = "sha256-CizjxAiajDLqajZKizMRAk5UEZA+jDeBSldPyIb6Ic8=";
};
buildInputs = [ pcre2 ];
meta = with lib; {
homepage = "https://docs.neuzunix.com/jpcre2/latest/";
description = "C++ wrapper for PCRE2 Library";
platforms = lib.platforms.all;
license = licenses.bsd3;
};
}

View file

@ -20522,6 +20522,8 @@ with pkgs;
jose = callPackage ../development/libraries/jose { };
jpcre2 = callPackage ../development/libraries/jpcre2 { };
jshon = callPackage ../development/tools/parsing/jshon { };
json2hcl = callPackage ../development/tools/json2hcl { };