libnetfilter_conntrack: 1.0.4 -> 1.0.5
This commit is contained in:
parent
69e828b5a1
commit
41386bfdc6
|
@ -1,7 +1,8 @@
|
|||
{ stdenv, fetchurl, pkgconfig, libnfnetlink, libmnl }:
|
||||
|
||||
let version = "1.0.5"; in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libnetfilter_conntrack-1.0.4";
|
||||
name = "libnetfilter_conntrack-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://netfilter.org/projects/libnetfilter_conntrack/files/${name}.tar.bz2";
|
||||
|
@ -13,6 +14,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit version;
|
||||
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
|
||||
|
@ -22,7 +24,6 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
homepage = http://netfilter.org/projects/libnetfilter_conntrack/;
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue