2014-01-02 17:53:57 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2009-09-22 10:37:41 +02:00
|
|
|
|
2013-07-11 22:03:49 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-07-16 14:02:08 +02:00
|
|
|
name = "ethtool-${version}";
|
2018-06-19 20:39:58 +02:00
|
|
|
version = "4.17";
|
2009-09-22 10:37:41 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-11 22:03:49 +02:00
|
|
|
url = "mirror://kernel/software/network/ethtool/${name}.tar.xz";
|
2018-06-19 20:39:58 +02:00
|
|
|
sha256 = "11f5503mgcwjn1q4dvhjiqwnw3zmp2gbhirjvgfr71y72ys1wsy4";
|
2009-09-22 10:37:41 +02:00
|
|
|
};
|
|
|
|
|
2013-07-11 22:03:49 +02: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 10:37:41 +02:00
|
|
|
}
|