My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libnetfilter_queue/default.nix

21 lines
661 B

{ lib, stdenv, fetchurl, pkg-config, libmnl, libnfnetlink }:
stdenv.mkDerivation rec {
version = "1.0.5";
pname = "libnetfilter_queue";
src = fetchurl {
url = "https://www.netfilter.org/projects/libnetfilter_queue/files/${pname}-${version}.tar.bz2";
sha256 = "1xdra6i4p8jkv943ygjw646qx8df27f7p5852kc06vjx608krzzr";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libmnl libnfnetlink ];
meta = with lib; {
homepage = "https://www.netfilter.org/projects/libnetfilter_queue/";
description = "Userspace API to packets queued by the kernel packet filter";
license = licenses.gpl2;
platforms = platforms.linux;
};
}