nixpkgs/pkgs/os-specific/linux/kernel/linux-6.2.nix
Fabián Heredia Montiel fdcc3c4b95 linux: 6.2.11 -> 6.2.12
2023-04-20 16:25:53 -06:00

19 lines
535 B
Nix

{ lib, buildPackages, fetchurl, perl, buildLinux, nixosTests, ... } @ args:
with lib;
buildLinux (args // rec {
version = "6.2.12";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = versions.pad 3 version;
# branchVersion needs to be x.y
extraMeta.branch = versions.majorMinor version;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
sha256 = "1j6cn1ifmcqfqvxp9h10y8yfxi918yzl3yjbf96gmb9p4ysldqf7";
};
} // (args.argsOverride or { }))