linux_xanmod: 5.12.8 -> 5.12.10

This commit is contained in:
fortuneteller2k 2021-06-04 03:19:54 +08:00
parent 64f1254248
commit 0e4ade244d

View file

@ -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 { }))