2023-06-27 18:45:11 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, kernel, libdrm, python3 }:
|
|
|
|
let
|
|
|
|
python3WithLibs = python3.withPackages (ps: with ps; [
|
|
|
|
pybind11
|
|
|
|
]);
|
|
|
|
in
|
2017-05-01 12:22:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-07-08 21:56:15 +00:00
|
|
|
pname = "evdi";
|
2023-06-27 18:45:11 +00:00
|
|
|
version = "1.13.1";
|
2017-05-01 12:22:59 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "DisplayLink";
|
2019-07-08 21:56:15 +00:00
|
|
|
repo = pname;
|
2023-06-27 18:45:11 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
hash = "sha256-Or4hhnFOtC8vmB4kFUHbFHn2wg/NsUMY3d2Tiea6YbY=";
|
2017-05-01 12:22:59 +00:00
|
|
|
};
|
|
|
|
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error -Wno-error=sign-compare";
|
2022-01-11 20:20:30 +00:00
|
|
|
|
2018-01-16 09:05:42 +00:00
|
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
|
|
|
|
2023-06-27 18:45:11 +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
|
|
|
|
2018-02-22 09:55:06 +00:00
|
|
|
hardeningDisable = [ "format" "pic" "fortify" ];
|
2017-05-01 12:22:59 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
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
|
2017-05-01 12:22:59 +00:00
|
|
|
'';
|
|
|
|
|
2022-05-23 12:15:34 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2023-06-27 18:45:11 +00:00
|
|
|
patches = [
|
|
|
|
./0000-fix-drm-path.patch
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-05-01 12:22:59 +00:00
|
|
|
description = "Extensible Virtual Display Interface";
|
2023-06-28 06:16:17 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2019-11-01 04:46:59 +00:00
|
|
|
platforms = platforms.linux;
|
2021-06-30 15:55:32 +00:00
|
|
|
license = with licenses; [ lgpl21Only gpl2Only ];
|
2020-01-16 17:07:56 +00:00
|
|
|
homepage = "https://www.displaylink.com/";
|
2022-01-11 20:20:30 +00:00
|
|
|
broken = kernel.kernelOlder "4.19" || stdenv.isAarch64;
|
2017-05-01 12:22:59 +00:00
|
|
|
};
|
|
|
|
}
|