linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / os-specific / linux / kernel / linux-xanmod.nix
blobe3f0ebf76f5fccea1a7bc0c207c0747531e1a5e1
1 { lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args:
3 let
4   version = "5.11.15";
5   suffix = "xanmod1-cacule";
6 in
7   buildLinux (args // rec {
8     modDirVersion = "${version}-${suffix}";
9     inherit version;
11     src = fetchFromGitHub {
12       owner = "xanmod";
13       repo = "linux";
14       rev = modDirVersion;
15       sha256 = "sha256-Qhq01SgLeNbts86DLi/t70HJfJPmM1So1C4eqVyRLK0=";
16       extraPostFetch = ''
17         rm $out/.config
18       '';
19     };
21     extraMeta = {
22       branch = "5.11";
23       maintainers = with lib.maintainers; [ fortuneteller2k ];
24       description = "Built with custom settings and new features built to provide a stable, responsive and smooth desktop experience";
25       broken = stdenv.hostPlatform.isAarch64;
26     };
27   } // (args.argsOverride or { }))