nixpkgs/pkgs/tools/misc/ethtool/default.nix
R. RyanTM acf75db44c ethtool: 4.18 -> 4.19 (#50117)
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
2018-11-10 15:37:11 +01:00

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