2014-01-02 16:53:57 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2009-09-22 08:37:41 +00:00
|
|
|
|
2013-07-11 20:03:49 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "ethtool";
|
2019-07-26 01:01:41 +00:00
|
|
|
version = "5.2";
|
2009-09-22 08:37:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://kernel/software/network/ethtool/${pname}-${version}.tar.xz";
|
2019-07-26 01:01:41 +00:00
|
|
|
sha256 = "01bq2g7amycfp4syzcswz52pgphdgswklziqfjwnq3c6844dfpv6";
|
2009-09-22 08:37:41 +00:00
|
|
|
};
|
|
|
|
|
2013-07-11 20:03:49 +00:00
|
|
|
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 ];
|
|
|
|
};
|
2009-09-22 08:37:41 +00:00
|
|
|
}
|