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.

65 lines
1.5 KiB
Nix
Raw Normal View History

2024-01-31 17:05:00 +00:00
{ lib
, stdenv
, fetchFromGitHub
, kernel
, libdrm
, python3
}:
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.1-unstable-2024-01-30";
2017-05-01 12:22:59 +00:00
src = fetchFromGitHub {
owner = "DisplayLink";
2024-01-31 17:03:07 +00:00
repo = "evdi";
rev = "d21a6ea3c69ba180457966a04b6545d321cf46ca";
hash = "sha256-Txa9yX9h3GfmHRRNvhrfrsUoQhqRWbBt4gJYAZTNe0w=";
2017-05-01 12:22:59 +00:00
};
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 = with lib; {
2024-01-31 17:04:18 +00:00
broken = kernel.kernelOlder "4.19";
changelog = "https://github.com/DisplayLink/evdi/releases/tag/v${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 licenses; [ lgpl21Only gpl2Only ];
2023-06-28 06:16:17 +00:00
maintainers = with maintainers; [ ];
platforms = platforms.linux;
2017-05-01 12:22:59 +00:00
};
2024-01-31 17:03:07 +00:00
})