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.

49 lines
1.4 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.14.1";
2017-05-01 12:22:59 +00:00
src = fetchFromGitHub {
owner = "DisplayLink";
repo = pname;
rev = "v${version}";
hash = "sha256-em3Y56saB7K3Wr31Y0boc38xGb57gdveN0Cstgy8y20=";
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;
meta = with lib; {
changelog = "https://github.com/DisplayLink/evdi/releases/tag/v${version}";
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" || kernel.kernelAtLeast "6.6";
2017-05-01 12:22:59 +00:00
};
}