From d7637635d96b5be0ff63a83bded0a236a72ea2b3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 1 Jan 2023 14:33:03 +0000 Subject: inspircd, inspircdMinimal: 3.14.0 -> 3.15.0 Adds new regex_pcre2 module, enabled by default. https://docs.inspircd.org/3/change-log/#inspircd-3150 Co-authored-by: sternenseemann --- pkgs/servers/irc/inspircd/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/irc/inspircd/default.nix b/pkgs/servers/irc/inspircd/default.nix index 8f2d607d1a4..c8a9e12631e 100644 --- a/pkgs/servers/irc/inspircd/default.nix +++ b/pkgs/servers/irc/inspircd/default.nix @@ -50,6 +50,7 @@ let "mysql" "pgsql" "regex_pcre" + "regex_pcre2" "regex_re2" "regex_tre" "sqlite3" @@ -69,6 +70,7 @@ in , postgresql , libmysqlclient , pcre +, pcre2 , tre , re2 , sqlite @@ -97,6 +99,7 @@ let mysql = [ libmysqlclient ]; pgsql = [ postgresql ]; regex_pcre = [ pcre ]; + regex_pcre2 = [ pcre2 ]; regex_re2 = [ re2 ]; regex_tre = [ tre ]; sqlite3 = [ sqlite ]; @@ -142,13 +145,13 @@ in stdenv.mkDerivation rec { pname = "inspircd"; - version = "3.14.0"; + version = "3.15.0"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; - sha256 = "sha256-xrS/lvXHMVdtKta+57Vu4HygAuALFj+odJi8ScyrLGQ="; + sha256 = "sha256-4n9Tj+xTmPRPisiFjlyx7kYfReonIxoCWu18XWfEXY0="; }; outputs = [ "bin" "lib" "man" "doc" "out" ]; -- cgit 1.4.1