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

22 lines
658 B
Nix
Raw Normal View History

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