mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
23 lines
570 B
Nix
23 lines
570 B
Nix
{ stdenv, fetchurl, pkgconfig, libmnl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ipset-6.24";
|
|
|
|
src = fetchurl {
|
|
url = "http://ipset.netfilter.org/${name}.tar.bz2";
|
|
sha256 = "1l4mx78473azf7cb19fxf37gmj95k1zzabimbcmlg9h07wlgqw9h";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig libmnl ];
|
|
|
|
configureFlags = [ "--with-kmod=no" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://ipset.netfilter.org/;
|
|
description = "Administration tool for IP sets";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|