evdi: update code style

This commit is contained in:
Pol Dellaiera
2024-02-02 21:36:30 +01:00
parent 93d5d8dcde
commit 12490c7151
+12 -2
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}"