Skip to content

Commit

Permalink
system76-io-dkms: 1.0.2 -> 1.0.4
Browse files Browse the repository at this point in the history
add ahoneybun as co-maintainer
add aarch64-linux
Update sha256 and maintainers
change from sha256 to hash
  • Loading branch information
ahoneybun authored and Aaron Honeycutt committed Oct 21, 2024
1 parent 2b62add commit 2a155e3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pkgs/os-specific/linux/system76-io/default.nix
Original file line number Diff line number Diff line change
@@ -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}";
Expand All @@ -12,7 +12,7 @@ stdenv.mkDerivation {
owner = "pop-os";
repo = "system76-io-dkms";
rev = version;
inherit sha256;
inherit hash;
};

hardeningDisable = [ "pic" ];
Expand All @@ -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";
};
Expand Down

0 comments on commit 2a155e3

Please sign in to comment.