nixpkgs/pkgs/os-specific/linux/evdi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

83 lines
1.8 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
kernel,
libdrm,
python3,
2024-01-31 17:05:00 +00:00
}:
let
python3WithLibs = python3.withPackages (
ps: with ps; [
pybind11
]
);
in
2024-01-31 17:03:07 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "evdi";
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";
rev = "59a3a864f7476cd61d9c65bfd012d1e9ed90e2b1";
hash = "sha256-0xEh0Tb5QFReW5lXO/Mb3gn1z87+baR8Tix+dQjUZMw=";
2017-05-01 12:22:59 +00:00
};
patches = [
(fetchpatch {
url = "https://github.com/DisplayLink/evdi/commit/e41240cf62d7188643bc95e5d69e1c4cfa6ddb84.patch?full_index=1";
hash = "sha256-6V3QJZMAhXqfGLW2eWkIzJnOdBPvLLNVzg6DW1M3IaA=";
})
];
env.NIX_CFLAGS_COMPILE = toString [
"-Wno-error"
"-Wno-error=discarded-qualifiers" # for Linux 4.19 compatibility
"-Wno-error=sign-compare"
];
nativeBuildInputs = kernel.moduleBuildDependencies;
2024-01-31 17:05:00 +00:00
buildInputs = [
kernel
libdrm
python3WithLibs
];
2017-05-01 12:22:59 +00:00
makeFlags = kernel.makeFlags ++ [
"KVER=${kernel.modDirVersion}"
2020-01-16 17:07:56 +00:00
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
];
2017-05-01 12:22:59 +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
'';
enableParallelBuilding = true;
meta = {
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/";
license = with lib.licenses; [
lgpl21Only
gpl2Only
];
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
})