571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
73 lines
2.0 KiB
Nix
73 lines
2.0 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, autoreconfHook
|
|
, libtool
|
|
, libpcap
|
|
, libcdada
|
|
# Optional Dependencies
|
|
, withJansson ? true, jansson
|
|
, withNflog ? true, libnetfilter_log
|
|
, withSQLite ? true, sqlite
|
|
, withPgSQL ? true, postgresql
|
|
, withMysql ? true, libmysqlclient, zlib, numactl
|
|
, gnutlsSupport ? false, gnutls
|
|
, testers
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
version = "1.7.9";
|
|
pname = "pmacct";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pmacct";
|
|
repo = "pmacct";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-3gV6GUhTQnH09NRIJQI0xBn05Bgo3AJsE2cSxNPXITo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
libtool
|
|
];
|
|
buildInputs = [
|
|
libcdada
|
|
libpcap
|
|
] ++ lib.optional withJansson jansson
|
|
++ lib.optional withNflog libnetfilter_log
|
|
++ lib.optional withSQLite sqlite
|
|
++ lib.optional withPgSQL postgresql
|
|
++ lib.optionals withMysql [ libmysqlclient zlib numactl ]
|
|
++ lib.optional gnutlsSupport gnutls;
|
|
|
|
MYSQL_CONFIG = lib.optionalString withMysql "${lib.getDev libmysqlclient}/bin/mysql_config";
|
|
|
|
configureFlags = [
|
|
"--with-pcap-includes=${libpcap}/include"
|
|
] ++ lib.optional withJansson "--enable-jansson"
|
|
++ lib.optional withNflog "--enable-nflog"
|
|
++ lib.optional withSQLite "--enable-sqlite3"
|
|
++ lib.optional withPgSQL "--enable-pgsql"
|
|
++ lib.optional withMysql "--enable-mysql"
|
|
++ lib.optional gnutlsSupport "--enable-gnutls";
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion { package = finalAttrs.finalPackage; command = "pmacct -V"; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Small set of multi-purpose passive network monitoring tools";
|
|
longDescription = ''
|
|
pmacct is a small set of multi-purpose passive network monitoring tools
|
|
[NetFlow IPFIX sFlow libpcap BGP BMP RPKI IGP Streaming Telemetry]
|
|
'';
|
|
homepage = "http://www.pmacct.net/";
|
|
changelog = "https://github.com/pmacct/pmacct/blob/v${version}/ChangeLog";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|