biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / irc / ngircd / default.nix
blob3ec80a5075e08a2f3da6e592c9ac7f91089a27c2
1 { lib, stdenv, fetchurl, zlib, openssl, pam, libiconv }:
3 stdenv.mkDerivation rec {
4   pname = "ngircd";
5   version = "26.1";
7   src = fetchurl {
8     url = "https://ngircd.barton.de/pub/ngircd/${pname}-${version}.tar.xz";
9     sha256 = "sha256-VcFv0mAJ9vxqAH3076yHoC4SL2gGEs2hzibhehjYYlQ=";
10   };
12   configureFlags = [
13     "--with-syslog"
14     "--with-zlib"
15     "--with-pam"
16     "--with-openssl"
17     "--enable-ipv6"
18     "--with-iconv"
19   ];
21   buildInputs = [ zlib pam openssl libiconv ];
23   meta = {
24     description = "Next Generation IRC Daemon";
25     mainProgram = "ngircd";
26     homepage    = "https://ngircd.barton.de";
27     license     = lib.licenses.gpl2;
28     platforms   = lib.platforms.all;
29   };