linux_xanmod: 5.12.5 -> 5.12.7
This commit is contained in:
parent
20b023b5ea
commit
b4711d8af5
1 changed files with 20 additions and 20 deletions
|
@ -1,27 +1,27 @@
|
|||
{ lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args:
|
||||
|
||||
let
|
||||
version = "5.12.5";
|
||||
version = "5.12.7";
|
||||
suffix = "xanmod1-cacule";
|
||||
in
|
||||
buildLinux (args // rec {
|
||||
modDirVersion = "${version}-${suffix}";
|
||||
inherit version;
|
||||
buildLinux (args // rec {
|
||||
modDirVersion = "${version}-${suffix}";
|
||||
inherit version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xanmod";
|
||||
repo = "linux";
|
||||
rev = modDirVersion;
|
||||
sha256 = "sha256-u9ebl2M8zrCNdangcUdk/78KwPCYV41PIB6YKTqCgIY=";
|
||||
extraPostFetch = ''
|
||||
rm $out/.config
|
||||
'';
|
||||
};
|
||||
src = fetchFromGitHub {
|
||||
owner = "xanmod";
|
||||
repo = "linux";
|
||||
rev = modDirVersion;
|
||||
sha256 = "sha256-zwaCQ0qMp6LCyWZikyyDyTktBlYEvJqJX46uiRCOUz4=";
|
||||
extraPostFetch = ''
|
||||
rm $out/.config
|
||||
'';
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
} // (args.argsOverride or { }))
|
||||
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;
|
||||
};
|
||||
} // (args.argsOverride or { }))
|
||||
|
|
Loading…
Reference in a new issue