From bce0ac2d35868933232196308e5d5425672dfbb9 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Fri, 17 Jun 2022 14:46:32 -0400 Subject: [PATCH] linuxPackages.system76-io: 1.0.1 -> 1.0.2 --- .../os-specific/linux/system76-io/default.nix | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/pkgs/os-specific/linux/system76-io/default.nix b/pkgs/os-specific/linux/system76-io/default.nix index ab8c422d2da3..54af222bc7d8 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, fetchpatch }: +{ lib, stdenv, fetchFromGitHub, kernel }: let - version = "1.0.1"; - sha256 = "0qkgkkjy1isv6ws6hrcal75dxjz98rpnvqbm7agdcc6yv0c17wwh"; + version = "1.0.2"; + sha256 = "sha256-DWUjQmoojkzFv1p4Xyt0kOwwqQ216ocO5yR/ujhhMPA="; in stdenv.mkDerivation { name = "system76-io-module-${version}-${kernel.version}"; @@ -15,19 +15,6 @@ stdenv.mkDerivation { inherit sha256; }; - patches = [ - (fetchpatch { - name = "Fix_GCC_declaration-after-statement_error.patch"; - url = "https://patch-diff.githubusercontent.com/raw/pop-os/system76-io-dkms/pull/5.patch"; - sha256 = "sha256-G8SM5tdNbeLuwigmo1HKLN9o16WPpowLXxfM7Xi4aRI="; - }) - (fetchpatch { - name = "Fix_GCC_unused-function_error.patch"; - url = "https://patch-diff.githubusercontent.com/raw/pop-os/system76-io-dkms/pull/6.patch"; - sha256 = "sha256-vCXEzszmXa+wmI84oR8WduN4WnLTZA3M4GX+Jc4p/5o="; - }) - ]; - hardeningDisable = [ "pic" ]; nativeBuildInputs = kernel.moduleBuildDependencies;