gpd-win-max-2-2023/bmi260: 0.0.2 -> 1.0.0

This commit is contained in:
Cryolitia PukNgae
2024-10-13 08:10:23 +08:00
committed by mergify[bot]
parent 99918dfbd7
commit f682fedae0
2 changed files with 18 additions and 14 deletions

View File

@@ -1,28 +1,26 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchurl
, kernel
{
lib,
stdenv,
fetchFromGitHub,
kernel,
}:
stdenv.mkDerivation (finalAttr: {
pname = "bmi260";
version = "0.0.2";
version = "1.0.0";
src = fetchFromGitHub {
owner = "hhd-dev";
repo = finalAttr.pname;
rev = "v${finalAttr.version}";
hash = "sha256-J0npD75QqOGY1QUoznBjQ+jX28gq5u6b0JZOseclwE8=";
hash = "sha256-EFous0pPpCuVoCsFz6/4NryQRSH9Jw9Qng+RY1hiX1c=";
};
hardeningDisable = [ "pic" ];
nativeBuildInputs = kernel.moduleBuildDependencies;
makeFlags = [
"KERNEL_SRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
];
makeFlags = [ "KERNEL_SRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" ];
installPhase = ''
runHook preInstall
@@ -34,8 +32,11 @@ stdenv.mkDerivation (finalAttr: {
meta = with lib; {
homepage = "https://github.com/hhd-dev/bmi260";
description = "A kernel module driver for the Bosch BMI260 IMU";
license = with licenses; [ bsd3 gpl2Only ];
description = "A kernel driver for the Bosch BMI260 IMU";
license = with licenses; [
bsd3
gpl2Only
];
maintainers = with maintainers; [ Cryolitia ];
platforms = platforms.linux;
};