blob: 37d7f43fc931c9cbac0f289178705162cd1ff2d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{
lib,
stdenv,
fetchFromGitHub,
kernel,
kmod,
gnugrep,
}:
stdenv.mkDerivation {
pname = "vmware-modules";
version = "workstation-25h2-20251015-${kernel.version}";
src = fetchFromGitHub {
owner = "philipl";
repo = "vmware-host-modules";
rev = "5c80f597017882f76e9c7ffd48a292a4b7c860fe";
hash = "sha256-EFOkzwul1QCaKUBwFqH8uIsIUcvtEmxYVaE/OdoHdZI=";
};
hardeningDisable = [ "pic" ];
nativeBuildInputs = kernel.moduleBuildDependencies;
enableParallelBuilding = true;
postPatch = ''
substituteInPlace Makefile \
--replace '/lib/modules/$(VM_UNAME)/misc' "$out/lib/modules/${kernel.modDirVersion}/misc" \
--replace /sbin/modinfo "${kmod}/bin/modinfo" \
--replace 'test -z "$(DESTDIR)"' "0"
for module in "vmmon-only" "vmnet-only"; do
substituteInPlace "./$module/Makefile" \
--replace '/lib/modules/' "${kernel.dev}/lib/modules/" \
--replace /bin/grep "${gnugrep}/bin/grep"
done
'';
preInstall = ''
mkdir -p "$out/lib/modules/${kernel.modDirVersion}/misc"
'';
meta = {
description = "Kernel modules needed for VMware hypervisor";
homepage = "https://github.com/mkubecek/vmware-host-modules";
license = lib.licenses.gpl2Only;
platforms = [ "x86_64-linux" ];
maintainers = with lib.maintainers; [
deinferno
vifino
];
};
}
|