atheme, libbmowgli: fast-forward to unstable commits (#525737)

This commit is contained in:
Martin Weinelt
2026-05-29 22:23:04 +00:00
committed by GitHub
2 changed files with 30 additions and 11 deletions
+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/";
+8 -3
View File
@@ -2,17 +2,22 @@
lib,
stdenv,
fetchFromGitHub,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libmowgli";
version = "2.1.3";
version = "2.1.3-unstable-2024-04-01";
src = fetchFromGitHub {
owner = "atheme";
repo = "libmowgli-2";
rev = "v${finalAttrs.version}";
sha256 = "sha256-jlw6ixMoIdIjmQ86N+KN+Gez218sw894POkcCYnT0s0=";
rev = "878f7e931b55d36e2e1b27807f7a620cbb0577d8";
hash = "sha256-Ik0GDsC0vEFNW/s10u+kNubqVh95ZqXb2I5W9iyU1z4=";
};
passthru.updateScript = nix-update-script {
extraArgs = [ "--version=branch" ];
};
meta = {