mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
011eda39e1
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 - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 1.1.1 with grep in /nix/store/mmg2pn2acsbya5c6nsx780hwfnxjjhg5-libnftnl-1.1.1 - directory tree listing: https://gist.github.com/ea1868a4328d55362322213018ecd807 - du listing: https://gist.github.com/59152a0c483d21545bad3d44052c7a1e
23 lines
685 B
Nix
23 lines
685 B
Nix
{ stdenv, fetchurl, pkgconfig, libmnl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.1.1";
|
|
name = "libnftnl-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://netfilter.org/projects/libnftnl/files/${name}.tar.bz2";
|
|
sha256 = "1wmgjfcb35mscb2srzia5931srygywrs1aznxmg67v177x0nasjx";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|