nixpkgs/pkgs/development/libraries/libnetfilter_conntrack/default.nix
R. RyanTM 8013b38de6 libnetfilter_conntrack: 1.0.6 -> 1.0.7
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/libnetfilter_conntrack/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.0.7 with grep in /nix/store/05vjszwxnlqg6vhwm32ahsi1lri60hwq-libnetfilter_conntrack-1.0.7
- directory tree listing: https://gist.github.com/36bdb6f33ffd72101417b81a2251914f
2018-05-03 00:34:08 +02:00

29 lines
1.1 KiB
Nix

{ stdenv, fetchurl, pkgconfig, libnfnetlink, libmnl }:
stdenv.mkDerivation rec {
name = "libnetfilter_conntrack-${version}";
version = "1.0.7";
src = fetchurl {
url = "https://netfilter.org/projects/libnetfilter_conntrack/files/${name}.tar.bz2";
sha256 = "1dl9z50yny04xi5pymlykwmy6hcfc9p4nd7m47697zwxw98m6s1k";
};
buildInputs = [ libmnl ];
propagatedBuildInputs = [ libnfnetlink ];
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
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 = https://netfilter.org/projects/libnetfilter_conntrack/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}