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.

51 lines
1.3 KiB
Nix
Raw Normal View History

{ 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 {
pname = "evdi";
version = "1.13.1";
2017-05-01 12:22:59 +00:00
src = fetchFromGitHub {
owner = "DisplayLink";
repo = pname;
rev = "v${version}";
hash = "sha256-Or4hhnFOtC8vmB4kFUHbFHn2wg/NsUMY3d2Tiea6YbY=";
2017-05-01 12:22:59 +00:00
};
env.NIX_CFLAGS_COMPILE = "-Wno-error -Wno-error=sign-compare";
nativeBuildInputs = kernel.moduleBuildDependencies;
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 = ''
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
'';
enableParallelBuilding = true;
patches = [
./0000-fix-drm-path.patch
];
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; [ ];
platforms = platforms.linux;
license = with licenses; [ lgpl21Only gpl2Only ];
2020-01-16 17:07:56 +00:00
homepage = "https://www.displaylink.com/";
broken = kernel.kernelOlder "4.19" || stdenv.isAarch64;
2017-05-01 12:22:59 +00:00
};
}