Merge pull request #240100 from ee2500/sregex

This commit is contained in:
Sandro 2023-06-29 16:17:14 +02:00 committed by GitHub
commit 16b76678e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "sregex";
version = "0.0.1";
src = fetchFromGitHub {
owner = "openresty";
repo = pname;
rev = "v${version}";
hash = "sha256-HZ9O/3BQHHrTVLLlU0o1fLHxyRSesBhreT3IdGHnNsg=";
};
makeFlags = [ "PREFIX=$(out)" "CC:=$(CC)" ];
meta = with lib; {
homepage = "https://github.com/openresty/sregex";
description = "A non-backtracking NFA/DFA-based Perl-compatible regex engine matching on large data streams";
license = licenses.bsd3;
maintainers = with maintainers; [ earthengine ];
platforms = platforms.all;
};
}

View file

@ -24573,6 +24573,8 @@ with pkgs;
sqlite-jdbc = callPackage ../servers/sql/sqlite/jdbc { };
sregex = callPackage ../development/libraries/sregex { };
dqlite = callPackage ../development/libraries/dqlite { };
sqlcipher = callPackage ../development/libraries/sqlcipher { };