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

24 lines
573 B
Nix
Raw Normal View History

2014-12-28 09:03:54 +01:00
{ stdenv, fetchurl, pkgconfig, libmnl }:
stdenv.mkDerivation rec {
2020-01-10 22:37:03 +01:00
pname = "ipset";
2020-03-06 15:59:54 +01:00
version = "7.6";
2014-12-28 09:03:54 +01:00
src = fetchurl {
2020-01-10 22:37:03 +01:00
url = "http://ipset.netfilter.org/${pname}-${version}.tar.bz2";
2020-03-06 15:59:54 +01:00
sha256 = "1ny2spcm6bmpj8vnazssg99k59impr7n84jzkdmdjly1m7548z8f";
2014-12-28 09:03:54 +01:00
};
2015-08-29 02:49:15 +02:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libmnl ];
2014-12-28 09:03:54 +01:00
configureFlags = [ "--with-kmod=no" ];
meta = with stdenv.lib; {
2020-03-06 15:59:54 +01:00
homepage = "http://ipset.netfilter.org/";
2014-12-28 19:41:06 +01:00
description = "Administration tool for IP sets";
2014-12-28 09:03:54 +01:00
license = licenses.gpl2;
platforms = platforms.linux;
};
}