nixpkgs/pkgs/servers/irc/atheme/default.nix
Martin Weinelt 053e8cddf6
atheme: 7.2.11 -> 7.2.12
General authentication bypass in Atheme IRC services with InspIRCd 3

https://www.openwall.com/lists/oss-security/2022/01/30/4
2022-01-31 00:44:17 +01:00

34 lines
878 B
Nix

{ lib, stdenv, fetchgit, libmowgli, pkg-config, git, gettext, pcre, libidn, cracklib, openssl }:
stdenv.mkDerivation rec {
pname = "atheme";
version = "7.2.12";
src = fetchgit {
url = "https://github.com/atheme/atheme.git";
rev = "v${version}";
sha256 = "sha256-KAC1ZPNo4TqfVryKOYYef8cRWRgFmyEdvl1bgvpGNiM=";
leaveDotGit = true;
};
nativeBuildInputs = [ pkg-config git gettext ];
buildInputs = [ libmowgli pcre libidn cracklib openssl ];
configureFlags = [
"--with-pcre"
"--with-libidn"
"--with-cracklib"
"--enable-large-net"
"--enable-contrib"
"--enable-reproducible-builds"
];
meta = with lib; {
description = "A set of services for IRC networks";
homepage = "https://atheme.github.io/";
license = licenses.isc;
platforms = platforms.unix;
maintainers = with maintainers; [ leo60228 ];
};
}