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

30 lines
669 B
Nix
Raw Normal View History

2021-01-15 07:07:56 +00:00
{ lib, stdenv, fetchurl, zlib, openssl, pam, libiconv }:
2014-03-20 01:03:19 +00:00
stdenv.mkDerivation rec {
pname = "ngircd";
version = "26";
2014-03-20 01:03:19 +00:00
src = fetchurl {
url = "https://ngircd.barton.de/pub/ngircd/${pname}-${version}.tar.xz";
sha256 = "1ijmv18fa648y7apxb9vp4j9iq6fxq850kz5v36rysaq614cdp2n";
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";
homepage = "https://ngircd.barton.de";
2021-01-15 07:07:56 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.all;
2014-03-20 01:03:19 +00:00
};
}