acf75db44c
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ethtool/versions
20 lines
548 B
Nix
20 lines
548 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ethtool-${version}";
|
|
version = "4.19";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/software/network/ethtool/${name}.tar.xz";
|
|
sha256 = "1j6hyr809af2m3gqm11hdfwks5kljqy1ikspq3d9rhj29qv6r2mi";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Utility for controlling network drivers and hardware";
|
|
homepage = https://www.kernel.org/pub/software/network/ethtool/;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|