tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linuxKernel.packages.kvmfr: fix for looking glass B7
Austin Horstman
11 months ago
2dc4a439
9b8b1ba8
-18
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kvmfr
default.nix
-18
pkgs/os-specific/linux/kvmfr/default.nix
···
1
1
{
2
2
lib,
3
3
stdenv,
4
4
-
fetchpatch,
5
4
kernel,
6
5
looking-glass-client,
7
6
}:
···
17
16
"format"
18
17
];
19
18
nativeBuildInputs = kernel.moduleBuildDependencies;
20
20
-
21
21
-
patches = [
22
22
-
# fix build for linux-6_10
23
23
-
(fetchpatch {
24
24
-
url = "https://github.com/gnif/LookingGlass/commit/7305ce36af211220419eeab302ff28793d515df2.patch";
25
25
-
hash = "sha256-97nZsIH+jKCvSIPf1XPf3i8Wbr24almFZzMOhjhLOYk=";
26
26
-
stripLen = 1;
27
27
-
})
28
28
-
29
29
-
# security patch for potential buffer overflow
30
30
-
# https://github.com/gnif/LookingGlass/issues/1133
31
31
-
(fetchpatch {
32
32
-
url = "https://github.com/gnif/LookingGlass/commit/3ea37b86e38a87ee35eefb5d8fcc38b8dc8e2903.patch";
33
33
-
hash = "sha256-Kk1gN1uB86ZJA374zmzM9dwwfMZExJcix3hee7ifpp0=";
34
34
-
stripLen = 1;
35
35
-
})
36
36
-
];
37
19
38
20
makeFlags = [
39
21
"KVER=${kernel.modDirVersion}"