forked from mirrors/nixpkgs
atheme: init at 7.2.10-r2
This commit is contained in:
parent
6695d3f08f
commit
059483bf76
33
pkgs/servers/irc/atheme/default.nix
Normal file
33
pkgs/servers/irc/atheme/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ stdenv, fetchgit, libmowgli, pkgconfig, git, gettext, pcre, libidn, cracklib, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "atheme";
|
||||
version = "7.2.10-r2";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/atheme/atheme.git";
|
||||
rev = "v${version}";
|
||||
sha256 = "1yasfvbmixj4zzfv449hlcp0ms5c250lrshdy6x6l643nbnix4y9";
|
||||
leaveDotGit = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig 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 stdenv.lib; {
|
||||
description = "A set of services for IRC networks";
|
||||
homepage = https://atheme.github.io/;
|
||||
license = licenses.isc;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ leo60228 ];
|
||||
};
|
||||
}
|
|
@ -662,6 +662,8 @@ in
|
|||
gsl = gsl_1;
|
||||
};
|
||||
|
||||
atheme = callPackage ../servers/irc/atheme { };
|
||||
|
||||
atinout = callPackage ../tools/networking/atinout { };
|
||||
|
||||
atomicparsley = callPackage ../tools/video/atomicparsley {
|
||||
|
|
Loading…
Reference in a new issue