···33 xmlns:xi="http://www.w3.org/2001/XInclude"
44 version="5.0"
55 xml:id="sec-release-19.03">
66- <title>Release 19.03 (“Koi”, 2019/03/??)</title>
66+ <title>Release 19.03 (“Koi”, 2019/04/11)</title>
7788 <section xmlns="http://docbook.org/ns/docbook"
99 xmlns:xlink="http://www.w3.org/1999/xlink"
···1818 </para>
19192020 <itemizedlist>
2121+ <listitem>
2222+ <para>
2323+ End of support is planned for end of October 2019, handing over to 19.09.
2424+ </para>
2525+ </listitem>
2126 <listitem>
2227 <para>
2328 The default Python 3 interpreter is now CPython 3.7 instead of CPython
···1313 substituteInPlace setup.py --replace "six==1.10.0" "six>=1.10.0"
1414 '';
15151616- # Do not test on Python 2 darwin because the tests suite gets stuck
1717- # https://github.com/JBKahn/rednose/issues/23
1818- doCheck = !(stdenv.isDarwin && isPy27);
1616+ # Do not test on Python 2 because the tests suite gets stuck
1717+ # https://github.com/NixOS/nixpkgs/issues/60786
1818+ doCheck = !(isPy27);
19192020 checkInputs = [ six ];
2121 propagatedBuildInputs = [ nose colorama termstyle ];
···426426427427 VFIO_PCI_VGA = mkIf stdenv.is64bit yes;
428428429429+ # VirtualBox guest drivers in the kernel conflict with the ones in the
430430+ # official additions package and prevent the vboxsf module from loading,
431431+ # so disable them for now.
432432+ VBOXGUEST = option no;
433433+ DRM_VBOXVIDEO = option no;
434434+429435 } // optionalAttrs (stdenv.isx86_64 || stdenv.isi686) ({
430436 XEN = option yes;
431437···693699 # Bump the maximum number of CPUs to support systems like EC2 x1.*
694700 # instances and Xeon Phi.
695701 NR_CPUS = freeform "384";
702702+ } // optionalAttrs (stdenv.hostPlatform.system == "aarch64-linux") {
703703+ PREEMPT = no;
704704+ PREEMPT_VOLUNTARY = yes;
696705 };
697706 };
698707in
+2-2
pkgs/os-specific/linux/kernel/linux-4.14.nix
···33with stdenv.lib;
4455buildLinux (args // rec {
66- version = "4.14.118";
66+ version = "4.14.120";
7788 # modDirVersion needs to be x.y.z, will automatically add .0 if needed
99 modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
···13131414 src = fetchurl {
1515 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
1616- sha256 = "05csfas10b3kfj6pn72skxpk211y36bdzk5x63n6dbxrsjmp6zb8";
1616+ sha256 = "0k6bphnwwbgj06v8a4xafb23ysrvh8kg0imwhbvm6vsyyrnfif6x";
1717 };
1818} // (args.argsOverride or {}))
+2-2
pkgs/os-specific/linux/kernel/linux-4.19.nix
···33with stdenv.lib;
4455buildLinux (args // rec {
66- version = "4.19.42";
66+ version = "4.19.44";
7788 # modDirVersion needs to be x.y.z, will automatically add .0 if needed
99 modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
···13131414 src = fetchurl {
1515 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
1616- sha256 = "09ns4qskl2drg0p9fajy7nbh55anj0qxl7smca9rfxfm21hdf2gq";
1616+ sha256 = "125jlsy42qlprg6yhinsm87ir7x4iw2v2fd0myjihmkpjgll4xkh";
1717 };
1818} // (args.argsOverride or {}))