{ stdenv, fetchurl }: stdenv.mkDerivation rec { name = "ethtool-${version}"; version = "4.11"; src = fetchurl { url = "mirror://kernel/software/network/ethtool/${name}.tar.xz"; sha256 = "1cp132kk2xd2cwn1ysjv0cl8i9lnq3n4zi4wy676p5k4h2mfvn0j"; }; meta = with stdenv.lib; { description = "Utility for controlling network drivers and hardware"; homepage = https://www.kernel.org/pub/software/network/ethtool/; license = licenses.gpl2; platforms = platforms.linux; maintainers = [ maintainers.bjornfor ]; }; }