depot/third_party/nixpkgs/pkgs/by-name/ip/ipset/package.nix

29 lines
590 B
Nix

{
lib,
stdenv,
fetchurl,
pkg-config,
libmnl,
}:
stdenv.mkDerivation rec {
pname = "ipset";
version = "7.22";
src = fetchurl {
url = "https://ipset.netfilter.org/${pname}-${version}.tar.bz2";
sha256 = "sha256-9qxaR8Pvn0xn/L31Xnkcv+OOsKSqG6rNEmRqFAq6zdk=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libmnl ];
configureFlags = [ "--with-kmod=no" ];
meta = with lib; {
homepage = "https://ipset.netfilter.org/";
description = "Administration tool for IP sets";
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}