2014-12-28 08:03:54 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libmnl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-11-28 01:44:53 +00:00
|
|
|
name = "ipset-7.4";
|
2014-12-28 08:03:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://ipset.netfilter.org/${name}.tar.bz2";
|
2019-11-28 01:44:53 +00:00
|
|
|
sha256 = "110q996yrf74ckpkc5f4pn8j5bqq98f27fsak3ibgr3zwmv435sa";
|
2014-12-28 08:03:54 +00:00
|
|
|
};
|
|
|
|
|
2015-08-29 01:49:15 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libmnl ];
|
2014-12-28 08:03:54 +00:00
|
|
|
|
|
|
|
configureFlags = [ "--with-kmod=no" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|