evdi: update code style

This commit is contained in:
Pol Dellaiera 2024-01-31 18:05:00 +01:00
parent 93d5d8dcde
commit 12490c7151
No known key found for this signature in database
GPG key ID: D476DFE9C67467CA

View file

@ -1,4 +1,10 @@
{ lib, stdenv, fetchFromGitHub, kernel, libdrm, python3 }:
{ lib
, stdenv
, fetchFromGitHub
, kernel
, libdrm
, python3
}:
let
python3WithLibs = python3.withPackages (ps: with ps; [
@ -24,7 +30,11 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = kernel.moduleBuildDependencies;
buildInputs = [ kernel libdrm python3WithLibs ];
buildInputs = [
kernel
libdrm
python3WithLibs
];
makeFlags = kernel.makeFlags ++ [
"KVER=${kernel.modDirVersion}"