at 15.09-beta 22 lines 570 B view raw
1{ stdenv, fetchurl, pkgconfig, libmnl }: 2 3stdenv.mkDerivation rec { 4 name = "ipset-6.24"; 5 6 src = fetchurl { 7 url = "http://ipset.netfilter.org/${name}.tar.bz2"; 8 sha256 = "1l4mx78473azf7cb19fxf37gmj95k1zzabimbcmlg9h07wlgqw9h"; 9 }; 10 11 buildInputs = [ pkgconfig libmnl ]; 12 13 configureFlags = [ "--with-kmod=no" ]; 14 15 meta = with stdenv.lib; { 16 homepage = http://ipset.netfilter.org/; 17 description = "Administration tool for IP sets"; 18 license = licenses.gpl2; 19 platforms = platforms.linux; 20 maintainers = with maintainers; [ wkennington ]; 21 }; 22}