ethtool: 5.13 -> 5.14

conduit-nginx
Fabian Affolter 2021-09-27 10:55:59 +02:00
parent 7b03c7ee60
commit c56a5c61a6
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 ];
};
}