atheme: 7.2.12 -> 7.2.12-unstable-2026-05-12

Comes with pcre2 and y2k38 support.
This commit is contained in:
Martin Weinelt
2026-05-30 00:05:43 +02:00
parent 7de9db868d
commit ecd7613dcd
+22 -8
View File
@@ -1,26 +1,31 @@
{
lib,
stdenv,
fetchgit,
fetchFromGitHub,
libmowgli,
pkg-config,
git,
gettext,
pcre,
pcre2,
libidn,
libxcrypt,
cracklib,
openssl,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "atheme";
version = "7.2.12";
version = "7.2.12-unstable-2026-05-12";
src = fetchgit {
url = "https://github.com/atheme/atheme.git";
rev = "v${finalAttrs.version}";
hash = "sha256-KAC1ZPNo4TqfVryKOYYef8cRWRgFmyEdvl1bgvpGNiM=";
src = fetchFromGitHub {
owner = "atheme";
repo = "atheme";
rev = "23071cdf2c7b20210799218b485f97f06311b41f";
hash = "sha256-e7pD4ZXQ3irrpJJSDRuJu2pVMjxVe8AUzzVL5yCb9PA=";
# for modules and pinned libmowgli
fetchSubmodules = true;
# configure checks for git tree
leaveDotGit = true;
};
@@ -29,9 +34,10 @@ stdenv.mkDerivation (finalAttrs: {
git
gettext
];
buildInputs = [
libmowgli
pcre
pcre2
libidn
libxcrypt
cracklib
@@ -47,6 +53,14 @@ stdenv.mkDerivation (finalAttrs: {
"--enable-reproducible-builds"
];
enableParallelBuilding = true;
doCheck = true;
passthru.updateScript = nix-update-script {
extraArgs = [ "--version=branch" ];
};
meta = {
description = "Set of services for IRC networks";
homepage = "https://atheme.github.io/";