ethtool: 6.1 -> 6.7

+2 -12
+2 -12
pkgs/tools/misc/ethtool/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "ethtool"; 12 - version = "6.1"; 12 + version = "6.7"; 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/software/network/${pname}/${pname}-${version}.tar.xz"; 16 - sha256 = "sha256-xB/Igf+lpAQy0t2CnrRMZKSd7kgucWuqz5Jixk2qj5A="; 16 + sha256 = "sha256-w65SawHOTY32x5SrFw3kpBBNER6o2Ns/H9fCX8uQVhk="; 17 17 }; 18 - 19 - patches = [ 20 - # Patch that fixes build with musl libc 21 - # NOTE remove on next release, since it is applied in upstream 22 - (fetchpatch { 23 - name = "Fix-build-with-musl-libc.patch"; 24 - url = "https://git.kernel.org/pub/scm/network/ethtool/ethtool.git/patch/marvell.c?id=41be533331fc3c6b711dbe532405782d3b8be5d1"; 25 - sha256 = "sha256-CItvt/eeNJkr1sOzaaHZhAnaybDutL9cT2O6XwQll+M="; 26 - }) 27 - ]; 28 18 29 19 nativeBuildInputs = [ 30 20 pkg-config