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