7fd109e23f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ipset/versions
23 lines
543 B
Nix
23 lines
543 B
Nix
{ stdenv, fetchurl, pkgconfig, libmnl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ipset-7.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://ipset.netfilter.org/${name}.tar.bz2";
|
|
sha256 = "0nm3vagr1pb5hr1028qrwx6v6s8bxf1m4qjx72vak42y032wfi26";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libmnl ];
|
|
|
|
configureFlags = [ "--with-kmod=no" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://ipset.netfilter.org/;
|
|
description = "Administration tool for IP sets";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|