libnftnl: 1.0.6 -> 1.0.7

This commit is contained in:
Franz Pletz 2017-01-22 02:17:16 +01:00
parent 57145c6251
commit 8a7407e881
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,20 +1,21 @@
{ stdenv, fetchurl, pkgconfig, libmnl }:
stdenv.mkDerivation rec {
name = "libnftnl-1.0.6";
name = "libnftnl-1.0.7";
src = fetchurl {
url = "http://netfilter.org/projects/libnftnl/files/${name}.tar.bz2";
sha256 = "0zmh190c7212zvzjsn5lm6pf399r4arq7dliiqq6grd174m96fxd";
sha256 = "10irjrylcfkbp11617yr19vpfhgl54w0kw02jhj0i1abqv5nxdlv";
};
buildInputs = [ pkgconfig libmnl ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libmnl ];
meta = with stdenv.lib; {
description = "A userspace library providing a low-level netlink API to the in-kernel nf_tables subsystem";
homepage = http://netfilter.org/projects/libnftnl;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ wkennington ];
maintainers = with maintainers; [ wkennington fpletz ];
};
}