mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	gpd-win-max-2-2023/bmi260: 0.0.2 -> 1.0.0
This commit is contained in:
		
				
					committed by
					
						
						mergify[bot]
					
				
			
			
				
	
			
			
			
						parent
						
							99918dfbd7
						
					
				
				
					commit
					f682fedae0
				
			@@ -1,4 +1,4 @@
 | 
			
		||||
{ config, lib, pkgs, ... }:
 | 
			
		||||
{ config, lib, ... }:
 | 
			
		||||
 | 
			
		||||
with lib;
 | 
			
		||||
 | 
			
		||||
@@ -28,6 +28,9 @@ in
 | 
			
		||||
 | 
			
		||||
  config = mkIf config.hardware.sensor.iio.bmi260.enable {
 | 
			
		||||
    boot.extraModulePackages = [ bmi260 ];
 | 
			
		||||
    boot.kernelModules = [ "bmi260_core" "bmi260_i2c" ];
 | 
			
		||||
    boot.kernelModules = [
 | 
			
		||||
      "bmi260_core"
 | 
			
		||||
      "bmi260_i2c"
 | 
			
		||||
    ];
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -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;
 | 
			
		||||
  };
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user