mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
libnftnl: 1.0.6 -> 1.0.7
This commit is contained in:
parent
57145c6251
commit
8a7407e881
1 changed files with 5 additions and 4 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue