From 0e4ade244d0f1b01a378aa58c235a1576778c1fd Mon Sep 17 00:00:00 2001 From: fortuneteller2k Date: Fri, 4 Jun 2021 03:19:54 +0800 Subject: [PATCH] linux_xanmod: 5.12.8 -> 5.12.10 --- pkgs/os-specific/linux/kernel/linux-xanmod.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-xanmod.nix b/pkgs/os-specific/linux/kernel/linux-xanmod.nix index aa8988fae8e1..fafa0e538102 100644 --- a/pkgs/os-specific/linux/kernel/linux-xanmod.nix +++ b/pkgs/os-specific/linux/kernel/linux-xanmod.nix @@ -1,7 +1,7 @@ { lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args: let - version = "5.12.8"; + version = "5.12.10"; suffix = "xanmod1-cacule"; in buildLinux (args // rec { @@ -12,16 +12,13 @@ buildLinux (args // rec { owner = "xanmod"; repo = "linux"; rev = modDirVersion; - sha256 = "sha256-i3exBrEKyTHM2Iq8AJEIHwaw6KJarfcahlm/pPxAhmo="; - extraPostFetch = '' - rm $out/.config - ''; + sha256 = "sha256-DxWkknL8kgFmdI+jb5chVnWCz6oDKOw6iuT69zDaDNs="; }; extraMeta = { branch = "5.12-cacule"; maintainers = with lib.maintainers; [ fortuneteller2k ]; description = "Built with custom settings and new features built to provide a stable, responsive and smooth desktop experience"; - broken = stdenv.hostPlatform.isAarch64; + broken = stdenv.isAarch64; }; } // (args.argsOverride or { }))