Skip to content

Commit

Permalink
xone: fix kernel 6.11 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Raroh73 committed Sep 19, 2024
1 parent 20f9370 commit ff4117b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pkgs/os-specific/linux/xone/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub, kernel }:
{ stdenv, lib, fetchFromGitHub, kernel, fetchpatch }:

stdenv.mkDerivation (finalAttrs: {
pname = "xone";
Expand All @@ -11,6 +11,16 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-srAEw1ai5KT0rmVUL3Dut9R2mNb00AAZVCcINikh2sM=";
};

patches = [
# Fix build on kernel 6.11
# https://github.com/medusalix/xone/pull/48
(fetchpatch {
name = "kernel-6.11.patch";
url = "https://github.com/medusalix/xone/commit/28df566c38e0ee500fd5f74643fc35f21a4ff696.patch";
hash = "sha256-X14oZmxqqZJoBZxPXGZ9R8BAugx/hkSOgXlGwR5QCm8=";
})
];

setSourceRoot = ''
export sourceRoot=$(pwd)/${finalAttrs.src.name}
'';
Expand Down

0 comments on commit ff4117b

Please sign in to comment.