24 lines
573 B
Nix
24 lines
573 B
Nix
{ lib, stdenv, fetchurl, pkg-config, libmnl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ipset";
|
|
version = "7.11";
|
|
|
|
src = fetchurl {
|
|
url = "http://ipset.netfilter.org/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-MVG6rTDx2eMXsqtPL1qnqfe03BH8+P5zrNDcC126v30=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libmnl ];
|
|
|
|
configureFlags = [ "--with-kmod=no" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://ipset.netfilter.org/";
|
|
description = "Administration tool for IP sets";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|