Merge pull request #139612 from fabaff/bump-ethtool
ethtool: 5.13 -> 5.14
This commit is contained in:
commit
b2e576d359
1 changed files with 17 additions and 7 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue