nixpkgs/pkgs/development/libraries/libnftnl/default.nix

22 lines
658 B
Nix
Raw Normal View History

2014-08-23 22:11:37 +00:00
{ stdenv, fetchurl, pkgconfig, libmnl }:
stdenv.mkDerivation rec {
2017-01-22 01:17:16 +00:00
name = "libnftnl-1.0.7";
2014-08-23 22:11:37 +00:00
src = fetchurl {
2016-05-09 13:35:41 +00:00
url = "http://netfilter.org/projects/libnftnl/files/${name}.tar.bz2";
2017-01-22 01:17:16 +00:00
sha256 = "10irjrylcfkbp11617yr19vpfhgl54w0kw02jhj0i1abqv5nxdlv";
2014-08-23 22:11:37 +00:00
};
2017-01-22 01:17:16 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libmnl ];
2014-08-23 22:11:37 +00:00
meta = with stdenv.lib; {
2016-05-09 13:35:41 +00:00
description = "A userspace library providing a low-level netlink API to the in-kernel nf_tables subsystem";
2014-08-23 22:11:37 +00:00
homepage = http://netfilter.org/projects/libnftnl;
license = licenses.gpl2Plus;
platforms = platforms.linux;
2017-01-22 01:17:16 +00:00
maintainers = with maintainers; [ wkennington fpletz ];
2014-08-23 22:11:37 +00:00
};
}