{ stdenv, fetchurl }: stdenv.mkDerivation rec { name = "ethtool-${version}"; version = "4.19"; src = fetchurl { url = "mirror://kernel/software/network/ethtool/${name}.tar.xz"; sha256 = "1j6hyr809af2m3gqm11hdfwks5kljqy1ikspq3d9rhj29qv6r2mi"; }; 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 ]; }; }