guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: Add ethtool.


From: Mark H. Weaver
Subject: 02/03: gnu: Add ethtool.
Date: Mon, 27 Jul 2015 19:13:05 +0000

mhw pushed a commit to branch master
in repository guix.

commit 5df2316d730b93cac8d9add0325ddcf1d0090f42
Author: Mark H Weaver <address@hidden>
Date:   Mon Jul 27 14:53:38 2015 -0400

    gnu: Add ethtool.
    
    * gnu/packages/networking.scm (ethtool): New variable.
---
 gnu/packages/networking.scm |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 70e02d6..dc139e2 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]