openxray: 2188-november-2023-rc1 -> 2921-january-2025-rc1 (#375925)
[NixPkgs.git] / pkgs / by-name / li / libnfnetlink / package.nix
blob897b257ab3ef6e20f62f25b0a22e43b2b7770166
2   lib,
3   stdenv,
4   fetchurl,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "libnfnetlink";
9   version = "1.0.2";
11   src = fetchurl {
12     url = "https://www.netfilter.org/projects/libnfnetlink/files/libnfnetlink-${version}.tar.bz2";
13     sha256 = "0xn3rcrzxr6g82kfxzs9bqn2zvl2kf2yda30drwb9vr6sk1wfr5h";
14   };
16   meta = {
17     description = "Low-level library for netfilter related kernel/userspace communication";
18     longDescription = ''
19       libnfnetlink is the low-level library for netfilter related kernel/userspace communication.
20       It provides a generic messaging infrastructure for in-kernel netfilter subsystems
21       (such as nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their respective users
22       and/or management tools in userspace.
24       This library is not meant as a public API for application developers.
25       It is only used by other netfilter.org projects, like the aforementioned ones.
26     '';
27     homepage = "https://www.netfilter.org/projects/libnfnetlink/index.html";
28     license = lib.licenses.gpl2;
30     platforms = lib.platforms.linux;
31   };