3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/irc/ngircd/default.nix

29 lines
646 B
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, openssl, pam, libiconv }:
2014-03-20 01:03:19 +00:00
stdenv.mkDerivation rec {
name = "ngircd-21";
src = fetchurl {
url = "http://ngircd.barton.de/pub/ngircd/${name}.tar.xz";
sha256 = "19llx54zy6hc8k7kcs1f234qc20mqpnlnb30c663c42jxq5x6xii";
};
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 = http://ngircd.barton.de;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
};
}