1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/ipset/default.nix
R. RyanTM 62950bca1a ipset: 7.1 -> 7.2
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
2019-06-16 20:31:04 -07:00

23 lines
543 B
Nix

{ stdenv, fetchurl, pkgconfig, libmnl }:
stdenv.mkDerivation rec {
name = "ipset-7.2";
src = fetchurl {
url = "http://ipset.netfilter.org/${name}.tar.bz2";
sha256 = "06268dchlk4x8x27rhn569hjkm99jk2iid3ara2xr7k66i2kh4rf";
};
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;
};
}