Merge pull request #139612 from fabaff/bump-ethtool

ethtool: 5.13 -> 5.14
conduit-nginx
Maximilian Bosch 2021-10-22 20:58:01 +02:00 committed by GitHub
commit b2e576d359
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 7 deletions

View File

@ -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 ];
};
}