python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libnftnl / default.nix
blob10ef8e5395a38a6c6baeccd823b81cc2d4f66278
1 { lib, stdenv, fetchurl, pkg-config, libmnl }:
3 stdenv.mkDerivation rec {
4   version = "1.2.4";
5   pname = "libnftnl";
7   src = fetchurl {
8     url = "https://netfilter.org/projects/${pname}/files/${pname}-${version}.tar.bz2";
9     hash = "sha256-wP4jO+TN/XA+fVl37462P8vx0AUrYEThsj1HyjViR38=";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ libmnl ];
15   meta = with lib; {
16     description = "A userspace library providing a low-level netlink API to the in-kernel nf_tables subsystem";
17     homepage = "https://netfilter.org/projects/libnftnl/";
18     license = licenses.gpl2Plus;
19     platforms = platforms.linux;
20     maintainers = with maintainers; [ fpletz ajs124 ];
21   };