nixpkgs/pkgs/tools/misc/ethtool/default.nix

20 lines
559 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2016-07-16 12:02:08 +00:00
name = "ethtool-${version}";
version = "4.6";
src = fetchurl {
url = "mirror://kernel/software/network/ethtool/${name}.tar.xz";
2016-07-16 12:02:08 +00:00
sha256 = "e90589a9349d008cce8c0510ac4e8878efdc0ddb1b732a9a4cc333b101313415";
};
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 ];
};
}