depot/third_party/nixpkgs/pkgs/servers/irc/ngircd/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

28 lines
650 B
Nix

{ stdenv, fetchurl, zlib, openssl, pam, libiconv }:
stdenv.mkDerivation rec {
name = "ngircd-25";
src = fetchurl {
url = "https://ngircd.barton.de/pub/ngircd/${name}.tar.xz";
sha256 = "0kpf5qi98m9f833r4rx9n6h9p31biwk798jwc1mgzmix7sp7r6f4";
};
configureFlags = [
"--with-syslog"
"--with-zlib"
"--with-pam"
"--with-openssl"
"--enable-ipv6"
"--with-iconv"
];
buildInputs = [ zlib pam openssl libiconv ];
meta = {
description = "Next Generation IRC Daemon";
homepage = "https://ngircd.barton.de";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
};
}