nixpkgs/pkgs/servers/irc/ngircd/default.nix

29 lines
648 B
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, openssl, pam, libiconv }:
2014-03-20 01:03:19 +00:00
stdenv.mkDerivation rec {
2017-02-02 03:03:33 +00:00
name = "ngircd-24";
2014-03-20 01:03:19 +00:00
src = fetchurl {
url = "https://ngircd.barton.de/pub/ngircd/${name}.tar.xz";
2017-02-02 03:03:33 +00:00
sha256 = "020h9d1awyxqr0l42x1fhs47q7cmm17fdxzjish8p2kq23ma0gqp";
2014-03-20 01:03:19 +00:00
};
configureFlags = [
"--with-syslog"
"--with-zlib"
"--with-pam"
"--with-openssl"
"--enable-ipv6"
"--with-iconv"
];
buildInputs = [ zlib pam openssl libiconv ];
2014-03-20 01:03:19 +00:00
meta = {
description = "Next Generation IRC Daemon";
2018-06-23 11:34:55 +00:00
homepage = https://ngircd.barton.de;
2014-03-20 01:03:19 +00:00
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
};
}