{ stdenv, fetchurl, pkgconfig, libmnl }: stdenv.mkDerivation rec { name = "ipset-7.4"; src = fetchurl { url = "http://ipset.netfilter.org/${name}.tar.bz2"; sha256 = "110q996yrf74ckpkc5f4pn8j5bqq98f27fsak3ibgr3zwmv435sa"; }; nativeBuildInputs = [ pkgconfig ]; buildInputs = [ 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; }; }