linux_5_9: remove
Linux 5.9.x is in upstream now, thus remove. We continue pointing linuxPackages_latest to linux_5_9, though, since this still points to linux_5_8 upstream.main
parent
b652481e19
commit
454dc9ae45
|
@ -10,14 +10,6 @@ with self; rec {
|
|||
|
||||
janus-gateway = callPackage ./pkgs/janus-gateway { };
|
||||
|
||||
linux_5_9 = callPackage ./pkgs/linux/linux-5.9.nix {
|
||||
kernelPatches = [
|
||||
kernelPatches.bridge_stp_helper
|
||||
kernelPatches.request_key_helper
|
||||
kernelPatches.export_kernel_fpu_functions."5.3"
|
||||
];
|
||||
};
|
||||
linuxPackages_5_9 = recurseIntoAttrs (linuxPackagesFor linux_5_9);
|
||||
linuxPackages_latest = linuxPackages_5_9;
|
||||
|
||||
nextcloud-spreed-signaling = callPackage ./pkgs/nextcloud-spreed-signaling { };
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
buildLinux (args // rec {
|
||||
version = "5.9.6";
|
||||
|
||||
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
|
||||
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
|
||||
|
||||
# branchVersion needs to be x.y
|
||||
extraMeta.branch = versions.majorMinor version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
|
||||
sha256 = "0w2kcng09nzk09dwkx4azdfgnwzbd2mz8lyl4j69bwx837z85hbc";
|
||||
};
|
||||
} // (args.argsOverride or {}))
|
Loading…
Reference in New Issue