···3 xmlns:xi="http://www.w3.org/2001/XInclude"
4 version="5.0"
5 xml:id="sec-release-19.03">
6- <title>Release 19.03 (“Koi”, 2019/03/??)</title>
78 <section xmlns="http://docbook.org/ns/docbook"
9 xmlns:xlink="http://www.w3.org/1999/xlink"
···18 </para>
1920 <itemizedlist>
0000021 <listitem>
22 <para>
23 The default Python 3 interpreter is now CPython 3.7 instead of CPython
···3 xmlns:xi="http://www.w3.org/2001/XInclude"
4 version="5.0"
5 xml:id="sec-release-19.03">
6+ <title>Release 19.03 (“Koi”, 2019/04/11)</title>
78 <section xmlns="http://docbook.org/ns/docbook"
9 xmlns:xlink="http://www.w3.org/1999/xlink"
···18 </para>
1920 <itemizedlist>
21+ <listitem>
22+ <para>
23+ End of support is planned for end of October 2019, handing over to 19.09.
24+ </para>
25+ </listitem>
26 <listitem>
27 <para>
28 The default Python 3 interpreter is now CPython 3.7 instead of CPython
···13 substituteInPlace setup.py --replace "six==1.10.0" "six>=1.10.0"
14 '';
1516- # Do not test on Python 2 darwin because the tests suite gets stuck
17- # https://github.com/JBKahn/rednose/issues/23
18- doCheck = !(stdenv.isDarwin && isPy27);
1920 checkInputs = [ six ];
21 propagatedBuildInputs = [ nose colorama termstyle ];
···13 substituteInPlace setup.py --replace "six==1.10.0" "six>=1.10.0"
14 '';
1516+ # Do not test on Python 2 because the tests suite gets stuck
17+ # https://github.com/NixOS/nixpkgs/issues/60786
18+ doCheck = !(isPy27);
1920 checkInputs = [ six ];
21 propagatedBuildInputs = [ nose colorama termstyle ];
···426427 VFIO_PCI_VGA = mkIf stdenv.is64bit yes;
428000000429 } // optionalAttrs (stdenv.isx86_64 || stdenv.isi686) ({
430 XEN = option yes;
431···693 # Bump the maximum number of CPUs to support systems like EC2 x1.*
694 # instances and Xeon Phi.
695 NR_CPUS = freeform "384";
000696 };
697 };
698in
···426427 VFIO_PCI_VGA = mkIf stdenv.is64bit yes;
428429+ # VirtualBox guest drivers in the kernel conflict with the ones in the
430+ # official additions package and prevent the vboxsf module from loading,
431+ # so disable them for now.
432+ VBOXGUEST = option no;
433+ DRM_VBOXVIDEO = option no;
434+435 } // optionalAttrs (stdenv.isx86_64 || stdenv.isi686) ({
436 XEN = option yes;
437···699 # Bump the maximum number of CPUs to support systems like EC2 x1.*
700 # instances and Xeon Phi.
701 NR_CPUS = freeform "384";
702+ } // optionalAttrs (stdenv.hostPlatform.system == "aarch64-linux") {
703+ PREEMPT = no;
704+ PREEMPT_VOLUNTARY = yes;
705 };
706 };
707in
+2-2
pkgs/os-specific/linux/kernel/linux-4.14.nix
···3with stdenv.lib;
45buildLinux (args // rec {
6- version = "4.14.118";
78 # modDirVersion needs to be x.y.z, will automatically add .0 if needed
9 modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
···1314 src = fetchurl {
15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
16- sha256 = "05csfas10b3kfj6pn72skxpk211y36bdzk5x63n6dbxrsjmp6zb8";
17 };
18} // (args.argsOverride or {}))
···3with stdenv.lib;
45buildLinux (args // rec {
6+ version = "4.14.120";
78 # modDirVersion needs to be x.y.z, will automatically add .0 if needed
9 modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
···1314 src = fetchurl {
15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
16+ sha256 = "0k6bphnwwbgj06v8a4xafb23ysrvh8kg0imwhbvm6vsyyrnfif6x";
17 };
18} // (args.argsOverride or {}))
+2-2
pkgs/os-specific/linux/kernel/linux-4.19.nix
···3with stdenv.lib;
45buildLinux (args // rec {
6- version = "4.19.42";
78 # modDirVersion needs to be x.y.z, will automatically add .0 if needed
9 modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
···1314 src = fetchurl {
15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
16- sha256 = "09ns4qskl2drg0p9fajy7nbh55anj0qxl7smca9rfxfm21hdf2gq";
17 };
18} // (args.argsOverride or {}))
···3with stdenv.lib;
45buildLinux (args // rec {
6+ version = "4.19.44";
78 # modDirVersion needs to be x.y.z, will automatically add .0 if needed
9 modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
···1314 src = fetchurl {
15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
16+ sha256 = "125jlsy42qlprg6yhinsm87ir7x4iw2v2fd0myjihmkpjgll4xkh";
17 };
18} // (args.argsOverride or {}))