From 2a155e334b5e8ea0815468dd5c9dda9795293bc5 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Thu, 17 Oct 2024 19:19:04 -0600 Subject: [PATCH] system76-io-dkms: 1.0.2 -> 1.0.4 add ahoneybun as co-maintainer add aarch64-linux Update sha256 and maintainers change from sha256 to hash --- pkgs/os-specific/linux/system76-io/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/os-specific/linux/system76-io/default.nix b/pkgs/os-specific/linux/system76-io/default.nix index 54af222bc7d88d..713b5e13de3c0c 100644 --- a/pkgs/os-specific/linux/system76-io/default.nix +++ b/pkgs/os-specific/linux/system76-io/default.nix @@ -1,7 +1,7 @@ { lib, stdenv, fetchFromGitHub, kernel }: let - version = "1.0.2"; - sha256 = "sha256-DWUjQmoojkzFv1p4Xyt0kOwwqQ216ocO5yR/ujhhMPA="; + version = "1.0.4"; + hash = "sha256-VE6sCehjXlRuOVcK4EN2H+FhaVaBi/jrAYx4TZjbreA="; in stdenv.mkDerivation { name = "system76-io-module-${version}-${kernel.version}"; @@ -12,7 +12,7 @@ stdenv.mkDerivation { owner = "pop-os"; repo = "system76-io-dkms"; rev = version; - inherit sha256; + inherit hash; }; hardeningDisable = [ "pic" ]; @@ -27,11 +27,11 @@ stdenv.mkDerivation { install -D system76-io.ko $out/lib/modules/${kernel.modDirVersion}/misc/system76-io.ko ''; - meta = with lib; { - maintainers = [ maintainers.khumba ]; - license = [ licenses.gpl2Plus ]; - platforms = [ "i686-linux" "x86_64-linux" ]; - broken = versionOlder kernel.version "4.14"; + meta = { + maintainers = with lib.maintainers; [ khumba ahoneybun ]; + license = lib.licenses.gpl2Plus; + platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ]; + broken = versionOlder kernel.version "5.10"; description = "DKMS module for controlling System76 I/O board"; homepage = "https://github.com/pop-os/system76-io-dkms"; };