depot/third_party/nixpkgs/pkgs/os-specific/linux/ipset/default.nix
Default email 686ce24904 Project import generated by Copybara.
GitOrigin-RevId: ac1f5b72a9e95873d1de0233fddcb56f99884b37
2023-02-16 18:41:37 +01:00

23 lines
575 B
Nix

{ lib, stdenv, fetchurl, pkg-config, libmnl }:
stdenv.mkDerivation rec {
pname = "ipset";
version = "7.17";
src = fetchurl {
url = "https://ipset.netfilter.org/${pname}-${version}.tar.bz2";
sha256 = "sha256-vknJ/0id1mEMrWVB50PDOE6slunyRwfaezkp2PKsZNg=";
};
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.gpl2;
platforms = platforms.linux;
};
}