1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

ethtool: 3.2 -> 3.10

And add package meta data.
This commit is contained in:
Bjørn Forsman 2013-07-11 22:03:49 +02:00 committed by Rok Garbas
parent f2dea7d287
commit 1af178559f

View file

@ -1,11 +1,18 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ethtool-3.2";
stdenv.mkDerivation rec {
name = "ethtool-3.10";
src = fetchurl {
url = mirror://kernel/software/network/ethtool/ethtool-3.2.tar.xz;
sha256 = "0g9ldaba3vwlsmf490j33y3fgsmpfzxlzzblwashl448f8lcfap7";
url = "mirror://kernel/software/network/ethtool/${name}.tar.xz";
sha256 = "0h0wvi0s6s80v26plkh66aiyybpfyi18sjg5pl9idrd0ccdr93gq";
};
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 ];
};
}