2024-11-20 18:39:32 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
2024-11-30 10:57:38 +00:00
|
|
|
fetchpatch,
|
2024-11-20 18:39:32 +00:00
|
|
|
kernel,
|
|
|
|
libdrm,
|
|
|
|
python3,
|
2024-01-31 17:05:00 +00:00
|
|
|
}:
|
2023-08-27 17:47:55 +00:00
|
|
|
|
2023-06-27 18:45:11 +00:00
|
|
|
let
|
2024-11-20 18:39:32 +00:00
|
|
|
python3WithLibs = python3.withPackages (
|
|
|
|
ps: with ps; [
|
|
|
|
pybind11
|
|
|
|
]
|
|
|
|
);
|
2023-06-27 18:45:11 +00:00
|
|
|
in
|
2024-01-31 17:03:07 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-07-08 21:56:15 +00:00
|
|
|
pname = "evdi";
|
2024-11-30 10:57:38 +00:00
|
|
|
version = "1.14.7-unstable-2024-11-30";
|
2017-05-01 12:22:59 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "DisplayLink";
|
2024-01-31 17:03:07 +00:00
|
|
|
repo = "evdi";
|
2024-11-30 10:57:38 +00:00
|
|
|
rev = "59a3a864f7476cd61d9c65bfd012d1e9ed90e2b1";
|
|
|
|
hash = "sha256-0xEh0Tb5QFReW5lXO/Mb3gn1z87+baR8Tix+dQjUZMw=";
|
2017-05-01 12:22:59 +00:00
|
|
|
};
|
|
|
|
|
2024-11-30 10:57:38 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/DisplayLink/evdi/commit/e41240cf62d7188643bc95e5d69e1c4cfa6ddb84.patch?full_index=1";
|
|
|
|
hash = "sha256-6V3QJZMAhXqfGLW2eWkIzJnOdBPvLLNVzg6DW1M3IaA=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2023-11-07 13:56:05 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString [
|
|
|
|
"-Wno-error"
|
|
|
|
"-Wno-error=discarded-qualifiers" # for Linux 4.19 compatibility
|
|
|
|
"-Wno-error=sign-compare"
|
|
|
|
];
|
2022-01-11 20:20:30 +00:00
|
|
|
|
2018-01-16 09:05:42 +00:00
|
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
|
|
|
|
2024-01-31 17:05:00 +00:00
|
|
|
buildInputs = [
|
|
|
|
kernel
|
|
|
|
libdrm
|
|
|
|
python3WithLibs
|
|
|
|
];
|
2017-05-01 12:22:59 +00:00
|
|
|
|
2022-02-10 01:57:21 +00:00
|
|
|
makeFlags = kernel.makeFlags ++ [
|
2019-11-01 04:46:59 +00:00
|
|
|
"KVER=${kernel.modDirVersion}"
|
2020-01-16 17:07:56 +00:00
|
|
|
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
2019-11-01 04:46:59 +00:00
|
|
|
];
|
2017-05-01 12:22:59 +00:00
|
|
|
|
2024-11-20 18:39:32 +00:00
|
|
|
hardeningDisable = [
|
|
|
|
"format"
|
|
|
|
"pic"
|
|
|
|
"fortify"
|
|
|
|
];
|
2017-05-01 12:22:59 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2024-01-31 17:03:48 +00:00
|
|
|
runHook preInstall
|
2017-05-01 12:22:59 +00:00
|
|
|
install -Dm755 module/evdi.ko $out/lib/modules/${kernel.modDirVersion}/kernel/drivers/gpu/drm/evdi/evdi.ko
|
2020-07-11 09:59:58 +00:00
|
|
|
install -Dm755 library/libevdi.so $out/lib/libevdi.so
|
2024-01-31 17:03:48 +00:00
|
|
|
runHook postInstall
|
2017-05-01 12:22:59 +00:00
|
|
|
'';
|
|
|
|
|
2022-05-23 12:15:34 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2024-11-20 18:41:43 +00:00
|
|
|
meta = {
|
2024-11-30 10:57:38 +00:00
|
|
|
broken = kernel.kernelOlder "4.19";
|
2024-04-20 22:31:52 +00:00
|
|
|
changelog = "https://github.com/DisplayLink/evdi/releases/tag/v${finalAttrs.version}";
|
2017-05-01 12:22:59 +00:00
|
|
|
description = "Extensible Virtual Display Interface";
|
2024-01-31 17:04:18 +00:00
|
|
|
homepage = "https://www.displaylink.com/";
|
2024-11-20 18:45:55 +00:00
|
|
|
license = with lib.licenses; [
|
2024-11-20 18:39:32 +00:00
|
|
|
lgpl21Only
|
|
|
|
gpl2Only
|
|
|
|
];
|
2024-11-20 18:45:55 +00:00
|
|
|
maintainers = with lib.maintainers; [ drupol ];
|
|
|
|
platforms = lib.platforms.linux;
|
2017-05-01 12:22:59 +00:00
|
|
|
};
|
2024-01-31 17:03:07 +00:00
|
|
|
})
|