Merge pull request #124105 from fortuneteller2k/xanmod

linux_xanmod: 5.12.5 -> 5.12.6
This commit is contained in:
Sandro 2021-05-27 03:21:10 +02:00 committed by GitHub
commit da5a6d3b8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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