tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ethtool: 6.1 -> 6.7
Marcelo Giles
2 years ago
efdf534c
e02e9285
+2
-12
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
ethtool
default.nix
+2
-12
pkgs/tools/misc/ethtool/default.nix
···
9
9
10
10
stdenv.mkDerivation rec {
11
11
pname = "ethtool";
12
12
-
version = "6.1";
12
12
+
version = "6.7";
13
13
14
14
src = fetchurl {
15
15
url = "mirror://kernel/software/network/${pname}/${pname}-${version}.tar.xz";
16
16
-
sha256 = "sha256-xB/Igf+lpAQy0t2CnrRMZKSd7kgucWuqz5Jixk2qj5A=";
16
16
+
sha256 = "sha256-w65SawHOTY32x5SrFw3kpBBNER6o2Ns/H9fCX8uQVhk=";
17
17
};
18
18
-
19
19
-
patches = [
20
20
-
# Patch that fixes build with musl libc
21
21
-
# NOTE remove on next release, since it is applied in upstream
22
22
-
(fetchpatch {
23
23
-
name = "Fix-build-with-musl-libc.patch";
24
24
-
url = "https://git.kernel.org/pub/scm/network/ethtool/ethtool.git/patch/marvell.c?id=41be533331fc3c6b711dbe532405782d3b8be5d1";
25
25
-
sha256 = "sha256-CItvt/eeNJkr1sOzaaHZhAnaybDutL9cT2O6XwQll+M=";
26
26
-
})
27
27
-
];
28
18
29
19
nativeBuildInputs = [
30
20
pkg-config