linux_testing: 6.3-rc1 -> 6.3-rc5

Switched to fetchzip because the tarball is dynamically generated by
cgit.
This commit is contained in:
Alyssa Ross 2023-04-02 23:55:02 +00:00
parent acf9467de0
commit 82ebf4dfae

View file

@ -1,17 +1,17 @@
{ lib, buildPackages, fetchurl, perl, buildLinux, nixosTests, ... } @ args:
{ lib, buildPackages, fetchzip, perl, buildLinux, nixosTests, ... } @ args:
with lib;
buildLinux (args // rec {
version = "6.3-rc1";
version = "6.3-rc5";
extraMeta.branch = lib.versions.majorMinor version;
# modDirVersion needs to be x.y.z, will always add .0
modDirVersion = versions.pad 3 version;
src = fetchurl {
src = fetchzip {
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
hash = "sha256-oZhG9dYlRthT4TbRNuJ+/Kw/mRuGTIu2E9Dw5ge+xCo=";
hash = "sha256-HKKDSOK45jT5vUaE3xd7nlxRgy1fw9xXBhqrICy/12Y=";
};
# Should the testing kernels ever be built on Hydra?