summary refs log tree commit diff
path: root/pkgs/tools/misc/ethtool/default.nix
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-09-27 10:55:59 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-09-27 10:55:59 +0200
commitc56a5c61a63fafe07ef552f7896a52441b06497c (patch)
tree5b944bc81644178155d4c7b7cffe1e74ba29b2f5 /pkgs/tools/misc/ethtool/default.nix
parent7b03c7ee60844ecab58d45bd06e2c5f2f8336e64 (diff)
downloadnixpkgs-c56a5c61a63fafe07ef552f7896a52441b06497c.tar
nixpkgs-c56a5c61a63fafe07ef552f7896a52441b06497c.tar.gz
nixpkgs-c56a5c61a63fafe07ef552f7896a52441b06497c.tar.bz2
nixpkgs-c56a5c61a63fafe07ef552f7896a52441b06497c.tar.lz
nixpkgs-c56a5c61a63fafe07ef552f7896a52441b06497c.tar.xz
nixpkgs-c56a5c61a63fafe07ef552f7896a52441b06497c.tar.zst
nixpkgs-c56a5c61a63fafe07ef552f7896a52441b06497c.zip
ethtool: 5.13 -> 5.14
Diffstat (limited to 'pkgs/tools/misc/ethtool/default.nix')
-rw-r--r--pkgs/tools/misc/ethtool/default.nix24
1 files changed, 17 insertions, 7 deletions
diff --git a/pkgs/tools/misc/ethtool/default.nix b/pkgs/tools/misc/ethtool/default.nix
index 9457507458d..e4ca354e4a3 100644
--- a/pkgs/tools/misc/ethtool/default.nix
+++ b/pkgs/tools/misc/ethtool/default.nix
@@ -1,22 +1,32 @@
-{ lib, stdenv, fetchurl, pkg-config, libmnl }:
+{ lib
+, stdenv
+, fetchurl
+, libmnl
+, pkg-config
+}:
 
 stdenv.mkDerivation rec {
   pname = "ethtool";
-  version = "5.13";
+  version = "5.14";
 
   src = fetchurl {
     url = "mirror://kernel/software/network/${pname}/${pname}-${version}.tar.xz";
-    sha256 = "1wwcwiav0fbl75axmx8wms4xfdp1ji5c7j49k4yl8bngqra74fp6";
+    sha256 = "sha256-uxPbkZFcrNekkrZbZd8Hpn5Ll03b6vdiBbGUWiPSdoY=";
   };
 
-  nativeBuildInputs = [ pkg-config ];
-  buildInputs = [ libmnl ];
+  nativeBuildInputs = [
+    pkg-config
+  ];
+
+  buildInputs = [
+    libmnl
+  ];
 
   meta = with lib; {
     description = "Utility for controlling network drivers and hardware";
     homepage = "https://www.kernel.org/pub/software/network/ethtool/";
-    license = licenses.gpl2;
+    license = licenses.gpl2Plus;
     platforms = platforms.linux;
-    maintainers = [ maintainers.bjornfor ];
+    maintainers = with maintainers; [ bjornfor ];
   };
 }