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

fix: https://github.com/NixOS/nixos-hardware/issues/1352
This commit is contained in:
Cryolitia PukNgae
2025-03-11 03:40:48 +08:00
committed by mergify[bot]
parent d25dac1bd5
commit 14f45c1a63

View File

@@ -7,13 +7,13 @@
stdenv.mkDerivation (finalAttr: {
pname = "bmi260";
version = "1.0.0";
version = "1.1.0";
src = fetchFromGitHub {
owner = "hhd-dev";
repo = finalAttr.pname;
rev = "v${finalAttr.version}";
hash = "sha256-EFous0pPpCuVoCsFz6/4NryQRSH9Jw9Qng+RY1hiX1c=";
hash = "sha256-So8rWDTXYsMUgLBU9WrJp47txA8dI98tcxXNy92AYgg=";
};
hardeningDisable = [ "pic" ];
@@ -38,6 +38,6 @@ stdenv.mkDerivation (finalAttr: {
gpl2Only
];
maintainers = with maintainers; [ Cryolitia ];
platforms = platforms.linux;
platforms = [ "x86_64-linux" ];
};
})