e9c38095c6
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libnftnl/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.1.0 with grep in /nix/store/y9gq6j60kx9ya2aj2wgbfc73siq6fhn6-libnftnl-1.1.0 - directory tree listing: https://gist.github.com/c99e0a7414adaa7a40543678fd581602
23 lines
685 B
Nix
23 lines
685 B
Nix
{ stdenv, fetchurl, pkgconfig, libmnl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.1.0";
|
|
name = "libnftnl-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://netfilter.org/projects/libnftnl/files/${name}.tar.bz2";
|
|
sha256 = "0v4gywcjvv2vg4zk632al1zv3ad0lx87nshynv110l8n3fhsq3pc";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|