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

30 lines
670 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";
2021-01-20 10:59:36 +00:00
version = "26.1";
2014-03-20 01:03:19 +00:00
src = fetchurl {
url = "https://ngircd.barton.de/pub/ngircd/${pname}-${version}.tar.xz";
2021-01-20 10:59:36 +00:00
sha256 = "sha256-VcFv0mAJ9vxqAH3076yHoC4SL2gGEs2hzibhehjYYlQ=";
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
};
}