nixpkgs/pkgs/by-name/ng/ngircd/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
700 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";
2024-04-29 06:43:12 +01:00
version = "27";
2014-03-20 01:03:19 +00:00
src = fetchurl {
url = "https://ngircd.barton.de/pub/ngircd/${pname}-${version}.tar.xz";
2024-04-29 06:43:12 +01:00
sha256 = "sha256-aJeIAxndXi5zwckBlhNQn4jrW42qWCGjb7yj14XCR7g=";
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";
mainProgram = "ngircd";
homepage = "https://ngircd.barton.de";
2024-05-23 09:44:51 +01:00
license = lib.licenses.gpl2Plus;
2021-01-15 07:07:56 +00:00
platforms = lib.platforms.all;
2014-03-20 01:03:19 +00:00
};
}