Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libnftnl / default.nix
blob747c8893eb0fc11a526bd60d5cc1fc5d5e1b93d1
1 { lib, stdenv, fetchurl, pkg-config, libmnl }:
3 stdenv.mkDerivation rec {
4   version = "1.2.6";
5   pname = "libnftnl";
7   src = fetchurl {
8     url = "https://netfilter.org/projects/${pname}/files/${pname}-${version}.tar.xz";
9     hash = "sha256-zurqLNkhR9oZ8To1p/GkvCdn/4l+g45LR5z1S1nHd/Q=";
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   };