Unverified Commit 47e314e9 authored by Bruno Inec's avatar Bruno Inec
Browse files

ddcci-driver: patch to support linux 6.1

parent 0044cfa7
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitLab, kernel }:
{ lib, stdenv, fetchFromGitLab, kernel, fetchpatch }:

stdenv.mkDerivation rec {
  pname = "ddcci-driver";
@@ -32,6 +32,14 @@ stdenv.mkDerivation rec {
    "INCLUDEDIR=$(out)/include"
  ];

  patches = [
    # fix to support linux 6.1
    (fetchpatch {
      url = "https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux/-/commit/ce52d6ac5e5ed7119a0028eed8823117a004766e.patch";
      sha256 = "sha256-Tmf4oiMWLR5ma/3X0eoFuriK29HwDqy6dBT7WdqE3mI=";
    })
  ];

  meta = with lib; {
    description = "Kernel module driver for DDC/CI monitors";
    homepage = "https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux";