nixpkgs/pkgs/development/libraries/libnftnl/default.nix
2017-01-22 13:01:00 +01:00

22 lines
658 B
Nix

{ stdenv, fetchurl, pkgconfig, libmnl }:
stdenv.mkDerivation rec {
name = "libnftnl-1.0.7";
src = fetchurl {
url = "http://netfilter.org/projects/libnftnl/files/${name}.tar.bz2";
sha256 = "10irjrylcfkbp11617yr19vpfhgl54w0kw02jhj0i1abqv5nxdlv";
};
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 fpletz ];
};
}