Merge pull request #127789 from fortuneteller2k/backport-xanmod

[21.05] linux_xanmod: 5.12.5 -> 5.12.12
This commit is contained in:
Maximilian Bosch 2021-06-23 15:23:16 +02:00 committed by GitHub
commit 2f752379bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,21 +1,18 @@
{ lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args:
let
version = "5.12.5";
version = "5.12.12";
suffix = "xanmod1-cacule";
in
buildLinux (args // rec {
modDirVersion = "${version}-${suffix}";
buildLinux (args // rec {
inherit version;
modDirVersion = "${version}-${suffix}";
src = fetchFromGitHub {
owner = "xanmod";
repo = "linux";
rev = modDirVersion;
sha256 = "sha256-u9ebl2M8zrCNdangcUdk/78KwPCYV41PIB6YKTqCgIY=";
extraPostFetch = ''
rm $out/.config
'';
sha256 = "sha256-99gVqdYhnBx3MDTCCHbxsljmvi+DixHp19vtNwCRM/M=";
};
extraMeta = {
@ -24,4 +21,4 @@ in
description = "Built with custom settings and new features built to provide a stable, responsive and smooth desktop experience";
broken = stdenv.hostPlatform.isAarch64;
};
} // (args.argsOverride or { }))
} // (args.argsOverride or { }))