summary refs log blame commit diff
path: root/pkgs/servers/irc/ngircd/default.nix
blob: 4dd57b17fed3f3f31d9b8bfd594bb0abcc2a969b (plain) (tree)
1
2
3
4
5
6
7
8
                                                   

                         
                     


                                                              
                                                                    










                    
                                              




                                               


                                           
{ stdenv, fetchurl, zlib, openssl, pam, libiconv }:

stdenv.mkDerivation rec {
  name = "ngircd-24";

  src = fetchurl {
    url = "http://ngircd.barton.de/pub/ngircd/${name}.tar.xz";
    sha256 = "020h9d1awyxqr0l42x1fhs47q7cmm17fdxzjish8p2kq23ma0gqp";
  };

  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    = http://ngircd.barton.de;
    license     = stdenv.lib.licenses.gpl2;
    platforms   = stdenv.lib.platforms.all;
  };
}