nixpkgs/pkgs/os-specific/linux/ipset/default.nix
R. RyanTM cec5d5bffc ipset: 6.38 -> 7.0 (#50078)
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
2018-11-12 21:02:24 +01:00

23 lines
596 B
Nix

{ stdenv, fetchurl, pkgconfig, libmnl }:
stdenv.mkDerivation rec {
name = "ipset-7.0";
src = fetchurl {
url = "http://ipset.netfilter.org/${name}.tar.bz2";
sha256 = "1bs1qz6cs9z167f36xsbg93fb6dj5bw05shk07fkwkjiglxhzyn6";
};
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;
maintainers = with maintainers; [ wkennington ];
};
}