Merge branch 'system76-io-5.18'

This commit is contained in:
Shea Levy 2022-06-16 12:03:24 -04:00
commit 2434bd5a07
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, kernel }:
{ lib, stdenv, fetchFromGitHub, kernel, fetchpatch }:
let
version = "1.0.1";
sha256 = "0qkgkkjy1isv6ws6hrcal75dxjz98rpnvqbm7agdcc6yv0c17wwh";
@ -15,6 +15,19 @@ stdenv.mkDerivation {
inherit sha256;
};
patches = [
(fetchpatch {
name = "Fix_GCC_declaration-after-statement_error.patch";
url = "https://patch-diff.githubusercontent.com/raw/pop-os/system76-io-dkms/pull/5.patch";
sha256 = "sha256-G8SM5tdNbeLuwigmo1HKLN9o16WPpowLXxfM7Xi4aRI=";
})
(fetchpatch {
name = "Fix_GCC_unused-function_error.patch";
url = "https://patch-diff.githubusercontent.com/raw/pop-os/system76-io-dkms/pull/6.patch";
sha256 = "sha256-vCXEzszmXa+wmI84oR8WduN4WnLTZA3M4GX+Jc4p/5o=";
})
];
hardeningDisable = [ "pic" ];
nativeBuildInputs = kernel.moduleBuildDependencies;