From 5df2316d730b93cac8d9add0325ddcf1d0090f42 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Mon, 27 Jul 2015 14:53:38 -0400 Subject: gnu: Add ethtool. * gnu/packages/networking.scm (ethtool): New variable. --- gnu/packages/networking.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 70e02d6c7f..dc139e28fe 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -126,3 +126,23 @@ more.") Discovery Protocol. It also provides a tool named ndptool for sending and receiving NDP messages.") (license license:lgpl2.1+))) + +(define-public ethtool + (package + (name "ethtool") + (version "4.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://kernel.org/software/network/" + name "/" name "-" version ".tar.xz")) + (sha256 + (base32 + "1zzcwn6pk8qfasalqkxg8vrhacksfa50xsq4xifw7yfjqyn8fj4h")))) + (build-system gnu-build-system) + (home-page "https://www.kernel.org/pub/software/network/ethtool/") + (synopsis "Display or change Ethernet device settings") + (description + "ethtool can be used to query and change settings such as speed, +auto-negotiation and checksum offload on many network devices, especially +Ethernet devices.") + (license license:gpl2))) -- cgit v1.2.3