linux_xanmod: 5.12.5 -> 5.12.7

This commit is contained in:
fortuneteller2k 2021-05-23 14:02:27 +08:00
parent 20b023b5ea
commit b4711d8af5

View file

@ -1,27 +1,27 @@
{ lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args: { lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args:
let let
version = "5.12.5"; version = "5.12.7";
suffix = "xanmod1-cacule"; suffix = "xanmod1-cacule";
in in
buildLinux (args // rec { buildLinux (args // rec {
modDirVersion = "${version}-${suffix}"; modDirVersion = "${version}-${suffix}";
inherit version; inherit version;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "xanmod"; owner = "xanmod";
repo = "linux"; repo = "linux";
rev = modDirVersion; rev = modDirVersion;
sha256 = "sha256-u9ebl2M8zrCNdangcUdk/78KwPCYV41PIB6YKTqCgIY="; sha256 = "sha256-zwaCQ0qMp6LCyWZikyyDyTktBlYEvJqJX46uiRCOUz4=";
extraPostFetch = '' extraPostFetch = ''
rm $out/.config rm $out/.config
''; '';
}; };
extraMeta = { extraMeta = {
branch = "5.12-cacule"; branch = "5.12-cacule";
maintainers = with lib.maintainers; [ fortuneteller2k ]; maintainers = with lib.maintainers; [ fortuneteller2k ];
description = "Built with custom settings and new features built to provide a stable, responsive and smooth desktop experience"; description = "Built with custom settings and new features built to provide a stable, responsive and smooth desktop experience";
broken = stdenv.hostPlatform.isAarch64; broken = stdenv.hostPlatform.isAarch64;
}; };
} // (args.argsOverride or { })) } // (args.argsOverride or { }))