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

30 lines
670 B
Nix
Raw Normal View History

2021-01-14 23:07:56 -08:00
{ lib, stdenv, fetchurl, zlib, openssl, pam, libiconv }:
2014-03-19 18:03:19 -07:00
stdenv.mkDerivation rec {
pname = "ngircd";
2021-01-20 02:59:36 -08:00
version = "26.1";
2014-03-19 18:03:19 -07:00
src = fetchurl {
url = "https://ngircd.barton.de/pub/ngircd/${pname}-${version}.tar.xz";
2021-01-20 02:59:36 -08:00
sha256 = "sha256-VcFv0mAJ9vxqAH3076yHoC4SL2gGEs2hzibhehjYYlQ=";
2014-03-19 18:03:19 -07:00
};
configureFlags = [
"--with-syslog"
"--with-zlib"
"--with-pam"
"--with-openssl"
"--enable-ipv6"
"--with-iconv"
];
buildInputs = [ zlib pam openssl libiconv ];
2014-03-19 18:03:19 -07:00
meta = {
description = "Next Generation IRC Daemon";
homepage = "https://ngircd.barton.de";
2021-01-14 23:07:56 -08:00
license = lib.licenses.gpl2;
platforms = lib.platforms.all;
2014-03-19 18:03:19 -07:00
};
}