mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
add libnetfilter_conntrack-1.0.2
This commit is contained in:
parent
e9a1c82bac
commit
c39805d81c
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchurl, pkgconfig, libnfnetlink, libmnl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libnetfilter_conntrack-1.0.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://netfilter.org/projects/libnetfilter_conntrack/files/${name}.tar.bz2";
|
||||
md5 = "447114b5d61bb9a9617ead3217c3d3ff";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig libnfnetlink libmnl ];
|
||||
|
||||
meta = {
|
||||
description = "userspace library providing an API to the in-kernel connection tracking state table.";
|
||||
longDescription = ''
|
||||
libnetfilter_conntrack is a userspace library providing a programming interface (API) to the
|
||||
in-kernel connection tracking state table. The library libnetfilter_conntrack has been
|
||||
previously known as libnfnetlink_conntrack and libctnetlink. This library is currently used
|
||||
by conntrack-tools among many other applications
|
||||
'';
|
||||
homepage = http://netfilter.org/projects/libnetfilter_conntrack/;
|
||||
license = "GPLv2+";
|
||||
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -4277,6 +4277,8 @@ let
|
|||
|
||||
libmusicbrainz = libmusicbrainz3;
|
||||
|
||||
libnetfilter_conntrack = callPackage ../development/libraries/libnetfilter_conntrack { };
|
||||
|
||||
libnfnetlink = callPackage ../development/libraries/libnfnetlink { };
|
||||
|
||||
libnih = callPackage ../development/libraries/libnih { };
|
||||
|
|
Loading…
Reference in a new issue