nixpkgs/pkgs/os-specific/linux/ipset/default.nix

24 lines
573 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libmnl }:
2014-12-28 08:03:54 +00:00
stdenv.mkDerivation rec {
2020-01-10 21:37:03 +00:00
pname = "ipset";
2021-01-30 05:48:12 +00:00
version = "7.10";
2014-12-28 08:03:54 +00:00
src = fetchurl {
2020-01-10 21:37:03 +00:00
url = "http://ipset.netfilter.org/${pname}-${version}.tar.bz2";
2021-01-30 05:48:12 +00:00
sha256 = "sha256-skkGukPi/jIr1BhjR2dh10mkvd9c5MImW6BLA7x+nPY=";
2014-12-28 08:03:54 +00:00
};
nativeBuildInputs = [ pkg-config ];
2015-08-29 00:49:15 +00:00
buildInputs = [ libmnl ];
2014-12-28 08:03:54 +00:00
configureFlags = [ "--with-kmod=no" ];
meta = with lib; {
2020-03-06 14:59:54 +00:00
homepage = "http://ipset.netfilter.org/";
2014-12-28 18:41:06 +00:00
description = "Administration tool for IP sets";
2014-12-28 08:03:54 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
};
}