1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 10:31:36 +00:00
nixpkgs/pkgs/development/libraries/libnftnl/default.nix

22 lines
658 B
Nix
Raw Normal View History

2014-08-23 23:11:37 +01:00
{ stdenv, fetchurl, pkgconfig, libmnl }:
stdenv.mkDerivation rec {
2017-12-20 06:40:29 +00:00
name = "libnftnl-1.0.8";
2014-08-23 23:11:37 +01:00
src = fetchurl {
2016-05-09 14:35:41 +01:00
url = "http://netfilter.org/projects/libnftnl/files/${name}.tar.bz2";
2017-12-20 06:40:29 +00:00
sha256 = "0f10cfiyl4c0f8k3brxfrw28x7a6qvrakaslg4jgqncwxycxggg6";
2014-08-23 23:11:37 +01:00
};
2017-01-22 01:17:16 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libmnl ];
2014-08-23 23:11:37 +01:00
meta = with stdenv.lib; {
2016-05-09 14:35:41 +01:00
description = "A userspace library providing a low-level netlink API to the in-kernel nf_tables subsystem";
2014-08-23 23:11:37 +01: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 23:11:37 +01:00
};
}