Files
nixpkgs/pkgs/by-name/li/libnids/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

50 lines
1.3 KiB
Nix

{
lib,
stdenv,
fetchzip,
libpcap,
glib,
pkg-config,
libnet,
}:
stdenv.mkDerivation {
pname = "libnids";
version = "1.24";
src = fetchzip {
url = "mirror://sourceforge/libnids/libnids-1.24.tar.gz";
sha256 = "1cblklfdfxcmy0an6xyyzx4l877xdawhjd28daqfsvrh81mb07k1";
};
postPatch = ''
substituteInPlace src/Makefile.in \
--replace-fail ar '${stdenv.cc.targetPrefix}ar'
'';
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libpcap
glib
libnet
];
/*
Quoting the documentation of glib: g_thread_init has been deprecated since
version 2.32 and should not be used in newly-written code. This function is
no longer necessary. The GLib threading system is automatically initialized
at the start of your program.
this is necessary for dsniff to compile; otherwise g_thread_init is a missing
symbol when linking (?!?)
*/
env.NIX_CFLAGS_COMPILE = "-Dg_thread_init= ";
meta = with lib; {
description = "E-component of Network Intrusion Detection System which emulates the IP stack of Linux 2.0.x";
homepage = "https://libnids.sourceforge.net/";
license = licenses.gpl2Only;
maintainers = [ maintainers.symphorien ];
# probably also bsd and solaris
platforms = platforms.linux;
};
}