nixpkgs/pkgs/os-specific/linux/kernel/linux-6.1.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
535 B
Nix
Raw Normal View History

{ lib, buildPackages, fetchurl, perl, buildLinux, nixosTests, ... } @ args:
2022-12-12 07:53:11 +00:00
with lib;
buildLinux (args // rec {
2023-03-23 07:25:34 +00:00
version = "6.1.21";
2022-12-12 07:53:11 +00:00
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = versions.pad 3 version;
2022-12-12 07:53:11 +00:00
# branchVersion needs to be x.y
extraMeta.branch = versions.majorMinor version;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
2023-03-23 07:25:34 +00:00
sha256 = "0fnr2pw4pi0vnkpv8hfipya09cgdz6ghks7p6vdl2d71dawb2g5k";
2022-12-12 07:53:11 +00:00
};
} // (args.argsOverride or { }))