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

24 lines
597 B
Nix
Raw Normal View History

2014-12-28 09:03:54 +01:00
{ stdenv, fetchurl, pkgconfig, libmnl }:
stdenv.mkDerivation rec {
name = "ipset-6.38";
2014-12-28 09:03:54 +01:00
src = fetchurl {
url = "http://ipset.netfilter.org/${name}.tar.bz2";
sha256 = "0i72wcljl0nkpmzc20jcch3hpphrm0qp4v4j4ajamq0zlddn5vyf";
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; {
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;
maintainers = with maintainers; [ wkennington ];
};
}