diff --git a/pkgs/os-specific/linux/evdi/default.nix b/pkgs/os-specific/linux/evdi/default.nix index fb664e92cf17..e65790ef2608 100644 --- a/pkgs/os-specific/linux/evdi/default.nix +++ b/pkgs/os-specific/linux/evdi/default.nix @@ -1,15 +1,18 @@ -{ lib -, stdenv -, fetchFromGitHub -, kernel -, libdrm -, python3 +{ + lib, + stdenv, + fetchFromGitHub, + kernel, + libdrm, + python3, }: let - python3WithLibs = python3.withPackages (ps: with ps; [ - pybind11 - ]); + python3WithLibs = python3.withPackages ( + ps: with ps; [ + pybind11 + ] + ); in stdenv.mkDerivation (finalAttrs: { pname = "evdi"; @@ -41,7 +44,11 @@ stdenv.mkDerivation (finalAttrs: { "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" ]; - hardeningDisable = [ "format" "pic" "fortify" ]; + hardeningDisable = [ + "format" + "pic" + "fortify" + ]; installPhase = '' runHook preInstall @@ -52,13 +59,16 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { - broken = kernel.kernelOlder "4.19"; + meta = { + broken = kernel.kernelOlder "4.19" || kernel.kernelAtLeast "6.12"; changelog = "https://github.com/DisplayLink/evdi/releases/tag/v${finalAttrs.version}"; description = "Extensible Virtual Display Interface"; homepage = "https://www.displaylink.com/"; - license = with licenses; [ lgpl21Only gpl2Only ]; - maintainers = [ ]; - platforms = platforms.linux; + license = with lib.licenses; [ + lgpl21Only + gpl2Only + ]; + maintainers = with lib.maintainers; [ drupol ]; + platforms = lib.platforms.linux; }; })