mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 10:34:16 +00:00
f43a6d7ee7
Email release: https://lwn.net/Articles/936310/ Kernel Newbies: https://kernelnewbies.org/Linux_6.4 linux_latest is bumped to linux_6_4 now.
19 lines
498 B
Nix
19 lines
498 B
Nix
{ lib, fetchurl, buildLinux, ... } @ args:
|
|
|
|
with lib;
|
|
|
|
buildLinux (args // rec {
|
|
version = "6.4";
|
|
|
|
# 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 = "sha256-j6BYjwws7KRMrHeg45ukjJ8AprncaXYcAqXT76yNp/M=";
|
|
};
|
|
} // (args.argsOverride or { }))
|