Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default attributes to latest version available #40015

Open
5 of 23 tasks
matthewbauer opened this issue May 5, 2018 · 23 comments
Open
5 of 23 tasks

Update default attributes to latest version available #40015

matthewbauer opened this issue May 5, 2018 · 23 comments
Labels
5. scope: tracking Long-lived issue tracking long-term fixes or multiple sub-problems
Milestone

Comments

@matthewbauer
Copy link
Member

matthewbauer commented May 5, 2018

This is a tracking issue for old top-level attributes when the newest version is not being used. The usual policy is to make the generic attribute point to the latest version available & specify the older versions as arguments to callPackage where needed. There are legitimate exceptions but always good to try to get the latest software. Most of the exceptions have to do with `core' attributes like gcc or llvm where we need to be very careful when updating to avoid mass rebuilds & potential breakage.

This is not a complete list. Additions are welcome!

I am looking into making a script to finding these using nix-env -qaP but it is still a work in progress. All of the above were generated manually.

@FRidh
Copy link
Member

FRidh commented May 9, 2018

Mapping python to python3 was discussed in #18185 and on the mailing list. On the list there was a lot of opposition. But, at one point there was a working branch that did not break any builds and I was using that branch for some time.

@Mic92
Copy link
Member

Mic92 commented May 10, 2018

ansible 2.4 is the latest release. 2.5 is currently under active development https://docs.ansible.com/ansible/2.4/release_and_maintenance.html#release-status

@rnhmjoj
Copy link
Contributor

rnhmjoj commented May 12, 2018

If I understand correctly people are against it because PEP 394 recommends to symlink python to python2 with the rationale being to preserve compatibility with existing python2 script.
But don't we patch shebang to point to a very specific python interpreter already? Also this document is from 2011: python2 EOL now is only 1.5 years away. What do people expect it will happen after this date?

@FRidh
Copy link
Member

FRidh commented May 12, 2018

@rnhmjoj please discuss Python in #18185

@rnhmjoj
Copy link
Contributor

rnhmjoj commented May 12, 2018

@FRidh Ah, sorry.

@matthewbauer matthewbauer added this to the 19.03 milestone Nov 5, 2018
@dtzWill
Copy link
Member

dtzWill commented Jan 31, 2019

boost is another one for the list :).

@lilyball
Copy link
Member

OCaml should probably be on this list. nixpkgs.ocaml is 4.06, as is nixpkgs.ocamlPackages (which is really nixpkgs.ocaml-ng.ocamlPackages). Maybe there's a reason for holding it back, I don't know, I'm not an OCaml programmer, but the OCaml releases page doesn't indicate that 4.06 is any kind of LTS version, and the install page recommends 4.07.

@jonringer
Copy link
Contributor

feel like this needs to be updated, ansible is at 2.8 for example

@lilyball
Copy link
Member

nodejs should be updated. It's currently at 10.x but the recommended LTS is 12.x, and 10.x goes to maintenance mode in a few months.

@pbogdan
Copy link
Member

pbogdan commented Jan 13, 2020

I believe ffmpeg is another one for this list with latest upstream on 4.x and nixpkgs defaulting to 3.x.

@jonringer
Copy link
Contributor

@matthewbauer should we re-open this in another issue?

@disassembler disassembler modified the milestones: 20.03, 20.09 Feb 5, 2020
@andersk
Copy link
Contributor

andersk commented May 31, 2020

Here are several that I’ve noticed:

I wrote a quick script to find more candidates:

{ pkgs ? import <nixpkgs> { } }:

let
  flatten = attr: v:
    if !(builtins.tryEval v).success then
      { }
    else if pkgs.lib.isDerivation v then {
      ${attr} = v;
    } else if builtins.isAttrs v && (v.recurseForDerivations or false) then
      flattenAttrs "${attr}." v
    else
      { };

  flattenAttrs = attr: v:
    builtins.foldl' (x: y: x // y) { } (builtins.attrValues
      (builtins.mapAttrs (attr': flatten "${attr}${attr'}") v));

  flatPkgs = flattenAttrs "" pkgs;

  latest = builtins.foldl' (d: p:
    if p == null then
      d
    else if builtins.hasAttr p.name d
    && builtins.compareVersions p.version d.${p.name}.version < 0 then
      d
    else
      d // { ${p.name} = { inherit (p) attr version; }; }) { }
    (builtins.attrValues (builtins.mapAttrs (attr: drv:
      let t = builtins.tryEval drv.name;
      in if t.success then
        builtins.parseDrvName t.value // { inherit attr; }
      else
        null) flatPkgs));

in builtins.concatStringsSep "" (builtins.attrValues (builtins.mapAttrs
  (attr: drv:
    if builtins.match ".*[0-9](..*)?" attr == null then
      let t = builtins.tryEval drv.name;
      in if t.success then
        let p = builtins.parseDrvName t.value;
        in if p.version == latest.${p.name}.version then
          ""
        else ''
          ${attr} "${p.name}-${p.version}" → ${
            latest.${p.name}.attr
          } "${p.name}-${latest.${p.name}.version}"
        ''
      else
        ""
    else
      "") flatPkgs))

Here’s the output—unfiltered with many false positives, but still useful to scan as a starting point:

R "R-4.0.0" → rWrapper "R-4.0.0-wrapper"
adoptopenjdk-bin "adoptopenjdk-hotspot-bin-11.0.6" → openjdk14-bootstrap "adoptopenjdk-hotspot-bin-13.0.0"
adoptopenjdk-jre-bin "adoptopenjdk-jre-hotspot-bin-11.0.6" → adoptopenjdk-jre-hotspot-bin-13 "adoptopenjdk-jre-hotspot-bin-13.0.0"
allegro "allegro-4.4.3.1" → allegro5 "allegro-5.2.6.0"
antlr "antlr-2.7.7" → antlr4_7 "antlr-4.7.2"
arangodb "arangodb-3.4.8" → arangodb_3_5 "arangodb-3.5.1"
aseprite "aseprite-1.1.7" → aseprite-unfree "aseprite-1.2.16.3"
aspellDicts.he "aspell-dict-he-1.0-0" → hspellDicts.aspell "aspell-dict-he-1.1"
asterisk-stable "asterisk-15.7.0" → asterisk_16 "asterisk-16.1.1"
attica "attica-0.4.2" → libsForQt512.attica "attica-5.68.0"
bash "bash-4.4-p23" → bash_5 "bash-5.0-p16"
bashInteractive "bash-interactive-4.4-p23" → bashInteractive_5 "bash-interactive-5.0-p16"
bird "bird-1.6.8" → bird2 "bird-2.0.7"
blas "blas-3" → blas-reference "blas-3.8.0"
boost "boost-1.69.0" → boost17x "boost-1.72.0"
botan "botan-1.10.17" → botan2 "botan-2.7.0"
bullet "bullet-2.87" → bullet-roboschool "bullet-2019-03-27"
busybox "busybox-1.31.1" → busybox-sandbox-shell "busybox-1.31.1-x86_64-unknown-linux-musl"
caddy "caddy-1.0.5" → caddy2 "caddy-2.0.0"
cde "cde-0.1" → cdesktopenv "cde-2.3.2"
cgal "cgal-4.14.2" → cgal_5 "cgal-5.0.2"
clang "clang-wrapper-7.1.0" → clang_10 "clang-wrapper-10.0.0"
clang_multi "clang-wrapper-7.1.0" → clang_10 "clang-wrapper-10.0.0"
clasp-common-lisp "clasp-0.8.99.20181128" → clasp "clasp-3.1.4"
clisp "clisp-2.49" → clisp-tip "clisp-2.50pre20171114"
clucene_core "clucene-core-0.9.21b" → clucene_core_2 "clucene-core-2.3.3.4"
coq "coq-8.9.1" → coq_8_11 "coq-8.11.2"
coqPackages.coq "coq-8.9.1" → coq_8_11 "coq-8.11.2"
couchdb "couchdb-1.7.1" → couchdb2 "couchdb-2.3.1"
crawl "crawl-0.24.1" → crawlTiles "crawl-0.24.1-tiles"
cryptodev "cryptodev-linux-1.9-4.9.224" → linuxPackages_latest_xen_dom0_hardened.cryptodev "cryptodev-linux-1.9-5.6.14"
cudnn "cudatoolkit-10.1-cudnn-7.6.3" → cudatoolkit_10_2 "cudatoolkit-10.2.89"
cura "cura-4.6.1" → cura_stable "cura-15.04"
curaengine "curaengine-4.6.1" → curaengine_stable "curaengine-15.04.6"
dart "dart-2.7.2" → dart_dev "dart-2.9.0-4.0.dev"
dart_old "dart-1.24.3" → dart_dev "dart-2.9.0-4.0.dev"
dart_stable "dart-2.7.2" → dart_dev "dart-2.9.0-4.0.dev"
db "db-5.3.28" → db62 "db-6.2.23"
deisctl "deis-1.13.3" → deis "deis-1.13.4"
dex "dex-0.8.0" → dex-oidc "dex-2.17.0"
dfu-util-axoloti "dfu-util-0.8" → dfu-util "dfu-util-0.9"
diamond "diamond-0.8.36" → lattice-diamond "diamond-3.10"
dolphinEmu "dolphin-emu-5.0" → dolphinEmuMaster "dolphin-emu-5.0-11824"
dotnet-aspnetcore "aspnetcore-runtime-2.1.16" → dotnetCorePackages.aspnetcore_3_1 "aspnetcore-runtime-3.1.2"
dotnet-netcore "dotnet-runtime-2.1.16" → dotnetCorePackages.netcore_3_1 "dotnet-runtime-3.1.2"
dotnet-sdk "dotnet-sdk-2.1.804" → dotnetCorePackages.sdk_3_1 "dotnet-sdk-3.1.102"
dotnetPackages.FSharpData "FSharp.Data-2.2.3" → dotnetPackages.FSharpData225 "FSharp.Data-2.2.5"
dotnetPackages.FsCheck "FsCheck-1.0.4" → dotnetPackages.FsCheck262 "FsCheck-2.6.2"
dotnetPackages.FsLexYacc "FsLexYacc-6.1.0" → dotnetPackages.FsLexYacc706 "FsLexYacc-7.0.6"
dotnetPackages.NUnit "NUnit-2.6.4" → dotnetPackages.NUnit350 "NUnit-3.5.0"
dotnetPackages.SystemCollectionsImmutable "System.Collections.Immutable-1.1.36" → dotnetPackages.SystemCollectionsImmutable131 "System.Collections.Immutable-1.3.1"
dpdk "dpdk-19.11" → linuxPackages_latest_xen_dom0_hardened.dpdk "dpdk-19.11-5.6.14"
dune "dune-1.11.4" → ocamlPackages.dune_2 "dune-2.5.1"
elasticsearch "elasticsearch-6.8.3" → elasticsearch7 "elasticsearch-7.5.1"
elasticsearch-oss "elasticsearch-oss-6.8.3" → elasticsearch7-oss "elasticsearch-oss-7.5.1"
electron "electron-4.2.12" → electron_8 "electron-8.3.0"
enlightenment.rage "rage-0.3.1" → rage "rage-0.4.0"
erlang "erlang-22.3" → erlang_odbc "erlang-22.3-odbc"
erlang_javac "erlang-22.3-javac" → erlang_odbc "erlang-22.3-odbc"
erlang_nox "erlang-22.3" → erlang_odbc "erlang-22.3-odbc"
erlang_odbc_javac "erlang-22.3-javac-odbc" → erlang_odbc "erlang-22.3-odbc"
etcd "etcd-3.3.22" → etcd_3_4 "etcd-3.4.9"
etcdctl "etcd-3.3.22" → etcd_3_4 "etcd-3.4.9"
factorio "factorio-alpha-0.17.79" → factorio-experimental "factorio-alpha-0.18.26"
factorio-headless "factorio-headless-0.17.79" → factorio-headless-experimental "factorio-headless-0.18.26"
ffmpeg "ffmpeg-3.4.7" → ffmpeg_4 "ffmpeg-4.2.3"
filebeat "filebeat-6.8.3" → filebeat7 "filebeat-7.5.1"
firefox-esr "firefox-68.8.0esr" → firefoxWrapper "firefox-76.0.1"
firefox-esr-wrapper "firefox-68.8.0esr" → firefoxWrapper "firefox-76.0.1"
fltk "fltk-1.3.5" → fltk14 "fltk-1.4.x-r13121"
fplll "fplll-5.3.2" → fplll_20160331 "fplll-20160331"
fsharp "fsharp-4.0.1.1" → fsharp41 "fsharp-4.1.34"
fuse "fuse-2.9.9" → fuse-7z-ng "fuse-7z-ng-git-2014-06-08"
fuse-common "fuse-3.9.1" → fuse-7z-ng "fuse-7z-ng-git-2014-06-08"
gazebo "gazebo-6.5.1" → gazeboSimulator.gazebo7-headless "gazebo-7.0.0"
gazebo-headless "gazebo-6.5.1" → gazeboSimulator.gazebo7-headless "gazebo-7.0.0"
gcc "gcc-wrapper-9.3.0" → gcc10 "gcc-wrapper-10.1.0"
gcc_multi "gcc-wrapper-9.3.0" → gcc10 "gcc-wrapper-10.1.0"
gcl "gcl-2.6.12" → gcl_2_6_13_pre "gcl-2.6.13pre50"
gegl "gegl-0.2.0" → gnome3.gegl_0_4 "gegl-0.4.22"
getopt "getopt-1.1.6" → unixtools.getopt "getopt-1003.1-2008"
gfortran "gfortran-wrapper-9.3.0" → gfortran10 "gfortran-wrapper-10.1.0"
gmime "gmime-2.6.23" → gmime3 "gmime-3.2.7"
gnat "gnat-wrapper-9.3.0" → gnat10 "gnat-wrapper-10.1.0"
go-dependency-manager "gdm-1.4" → gnome3.gdm "gdm-3.34.1"
go_bootstrap "go-1.4-bootstrap-20161024" → go_1_14 "go-1.14.2"
golly-beta "golly-2.8.99.2.20161122" → golly "golly-3.3"
goocanvas "goocanvas-1.0.0" → goocanvas2 "goocanvas-2.0.4"
grantlee "grantlee-0.5.1" → libsForQt512.grantlee "grantlee-5.2.0"
grub "grub-0.97-73" → grub2_xen "grub-2.04"
gst-plugins-bad "gst-plugins-bad-0.10.23" → gst_all_1.gst-plugins-bad "gst-plugins-bad-1.16.2"
gst-plugins-base "gst-plugins-base-0.10.36" → gst_all_1.gst-plugins-base "gst-plugins-base-1.16.2"
gst-plugins-good "gst-plugins-good-0.10.31" → gst_all_1.gst-plugins-good "gst-plugins-good-1.16.2"
gst-plugins-ugly "gst-plugins-ugly-0.10.19" → gst_all_1.gst-plugins-ugly "gst-plugins-ugly-1.16.2"
gst_plugins_bad "gst-plugins-bad-0.10.23" → gst_all_1.gst-plugins-bad "gst-plugins-bad-1.16.2"
gst_plugins_base "gst-plugins-base-0.10.36" → gst_all_1.gst-plugins-base "gst-plugins-base-1.16.2"
gst_plugins_good "gst-plugins-good-0.10.31" → gst_all_1.gst-plugins-good "gst-plugins-good-1.16.2"
gst_plugins_ugly "gst-plugins-ugly-0.10.19" → gst_all_1.gst-plugins-ugly "gst-plugins-ugly-1.16.2"
gstreamer "gstreamer-0.10.36" → gst_all_1.gstreamer "gstreamer-1.16.2"
gstreamermm "gstreamermm-0.10.11" → gst_all_1.gstreamermm "gstreamermm-1.10.0"
gtksourceview "gtksourceview-3.24.11" → gtksourceview4 "gtksourceview-4.6.0"
gtksourceviewmm "gtksourceviewmm-3.21.3" → gtksourceviewmm4 "gtksourceviewmm-3.91.1"
hadoop "hadoop-2.7.7" → hadoop_3_1 "hadoop-3.1.1"
heartbeat "heartbeat-6.8.3" → heartbeat7 "heartbeat-7.5.1"
helm "helm-0.9.0" → kubernetes-helm "helm-3.2.1"
hydra-migration "hydra-2020-02-10" → hydra-unstable "hydra-2020-04-16"
hydrogen "hydrogen-0.9.7" → hydrogen-unstable "hydrogen-1.0.0-beta2"
ibus-engines.typing-booster-unwrapped "ibus-typing-booster-2.7.5" → ibus-engines.typing-booster "ibus-typing-booster-2.7.5-with-hunspell"
icu "icu4c-64.2" → icu67 "icu4c-67.1"
ignition.transport "ign-transport-0.9.0" → ignition.transport1 "ign-transport-1.0.1"
imagemagick "imagemagick-6.9.10-71" → imagemagick7_light "imagemagick-7.0.9-0"
imagemagickBig "imagemagick-6.9.10-71" → imagemagick7_light "imagemagick-7.0.9-0"
imagemagick_light "imagemagick-6.9.10-71" → imagemagick7_light "imagemagick-7.0.9-0"
jbuilder "dune-1.11.4" → ocamlPackages.dune_2 "dune-2.5.1"
jdk "openjdk-8u242-b08" → openjdk14 "openjdk-14.0.1-ga"
journalbeat "journalbeat-6.8.3" → journalbeat7 "journalbeat-7.5.1"
jre "openjdk-8u242-b08" → openjdk14 "openjdk-14.0.1-ga"
jre_headless "openjdk-headless-8u242-b08" → openjdk14_headless "openjdk-headless-14.0.1-ga"
julia "julia-1.0.4" → julia_13 "julia-1.3.1"
junit "junit-4.11" → javaPackages.junit_4_12 "junit-4.12"
kibana "kibana-6.8.3" → kibana7 "kibana-7.5.1"
kibana-oss "kibana-oss-6.8.3" → kibana7-oss "kibana-oss-7.5.1"
libav "libav-11.12" → libav_12 "libav-12.3"
libdbusmenu_qt "libdbusmenu-qt-0.9.2" → libsForQt512.libdbusmenu "libdbusmenu-qt-0.9.3+16"
libgnome-keyring "libgnome-keyring-2.32.0" → libgnome_keyring3 "libgnome-keyring-3.12.0"
libgnome_keyring "libgnome-keyring-2.32.0" → libgnome_keyring3 "libgnome-keyring-3.12.0"
libmusicbrainz "libmusicbrainz-3.0.3" → libmusicbrainz5 "libmusicbrainz-5.1.0"
libreoffice "libreoffice-6.3.5.2" → libreoffice-fresh-unwrapped "libreoffice-6.4.3.2"
libreoffice-still "libreoffice-6.3.5.2" → libreoffice-fresh-unwrapped "libreoffice-6.4.3.2"
libreoffice-still-unwrapped "libreoffice-6.3.5.2" → libreoffice-fresh-unwrapped "libreoffice-6.4.3.2"
libreoffice-unwrapped "libreoffice-6.3.5.2" → libreoffice-fresh-unwrapped "libreoffice-6.4.3.2"
libvpx "libvpx-1.7.0" → libvpx_1_8 "libvpx-1.8.2"
libwebsockets "libwebsockets-3.2.2" → libwebsockets_4_0 "libwebsockets-4.0.1"
libwnck "libwnck-2.31.0" → libwnck3 "libwnck-3.36.0"
libxmlxx "libxml++-2.40.1" → libxmlxx3 "libxml++-3.0.1"
lilypond-unstable "lilypond-2.19.83" → lilypond "lilypond-2.20.0"
lilyterm "lilyterm-0.9.9.4" → lilyterm-git "lilyterm-2019-07-25"
linux "linux-5.4.42" → linux_testing "linux-5.7-rc6"
linux-libre "linux-5.4.42" → linux_testing "linux-5.7-rc6"
linuxPackages-libre.acpi_call "acpi-call-2020-04-07-5.4.42" → linuxPackages_latest_xen_dom0_hardened.acpi_call "acpi-call-2020-04-07-5.6.14"
linuxPackages-libre.amdgpu-pro "amdgpu-pro-17.40-5.4.42" → linuxPackages_latest_xen_dom0_hardened.amdgpu-pro "amdgpu-pro-17.40-5.6.14"
linuxPackages-libre.anbox "anbox-modules-2019-11-15-5.4.42" → linuxPackages_latest_xen_dom0_hardened.anbox "anbox-modules-2019-11-15-5.6.14"
linuxPackages-libre.asus-wmi-sensors "asus-wmi-sensors-unstable-2019-11-07-5.4.42" → linuxPackages_latest_xen_dom0_hardened.asus-wmi-sensors "asus-wmi-sensors-unstable-2019-11-07-5.6.14"
linuxPackages-libre.batman_adv "batman-adv-2019.5-5.4.42" → linuxPackages_latest_xen_dom0_hardened.batman_adv "batman-adv-2019.5-5.6.14"
linuxPackages-libre.bbswitch "bbswitch-0.8-5.4.42" → linuxPackages_latest_xen_dom0_hardened.bbswitch "bbswitch-0.8-5.6.14"
linuxPackages-libre.broadcom_sta "broadcom-sta-6.30.223.271-5.4.42" → linuxPackages_latest_xen_dom0_hardened.broadcom_sta "broadcom-sta-6.30.223.271-5.6.14"
linuxPackages-libre.cpupower "cpupower-5.4.42" → linuxPackages_latest_xen_dom0_hardened.cpupower "cpupower-5.6.14"
linuxPackages-libre.cryptodev "cryptodev-linux-1.9-5.4.42" → linuxPackages_latest_xen_dom0_hardened.cryptodev "cryptodev-linux-1.9-5.6.14"
linuxPackages-libre.ddcci-driver "ddcci-driver-5.4.42-0.3.3" → linuxPackages_latest_xen_dom0_hardened.ddcci-driver "ddcci-driver-5.6.14-0.3.3"
linuxPackages-libre.deepin-anything "deepin-anything-module-5.0.1-5.4.42" → linuxPackages_latest_xen_dom0_hardened.deepin-anything "deepin-anything-module-5.0.1-5.6.14"
linuxPackages-libre.dpdk "dpdk-19.11-5.4.42" → linuxPackages_latest_xen_dom0_hardened.dpdk "dpdk-19.11-5.6.14"
linuxPackages-libre.ena "ena-2.2.7-5.4.42" → linuxPackages_latest_xen_dom0_hardened.ena "ena-2.2.7-5.6.14"
linuxPackages-libre.exfat-nofuse "exfat-nofuse-2019-09-06-5.4.42" → linuxPackages_latest_xen_dom0_hardened.exfat-nofuse "exfat-nofuse-2019-09-06-5.6.14"
linuxPackages-libre.facetimehd "facetimehd-unstable-2019-12-10-5.4.42" → linuxPackages_latest_xen_dom0_hardened.facetimehd "facetimehd-unstable-2019-12-10-5.6.14"
linuxPackages-libre.fwts-efi-runtime "fwts-efi-runtime-20.03.00-5.4.42" → linuxPackages_latest_xen_dom0_hardened.fwts-efi-runtime "fwts-efi-runtime-20.03.00-5.6.14"
linuxPackages-libre.hyperv-daemons "hyperv-daemons-5.4.42" → linuxPackages_latest_xen_dom0_hardened.hyperv-daemons "hyperv-daemons-5.6.14"
linuxPackages-libre.intel-speed-select "intel-speed-select-5.4.42" → linuxPackages_latest_xen_dom0_hardened.intel-speed-select "intel-speed-select-5.6.14"
linuxPackages-libre.ixgbevf "ixgbevf-4.6.1-5.4.42" → linuxPackages_latest_xen_dom0_hardened.ixgbevf "ixgbevf-4.6.1-5.6.14"
linuxPackages-libre.jool "jool-4.0.5-5.4.42" → linuxPackages_latest_xen_dom0_hardened.jool "jool-4.0.5-5.6.14"
linuxPackages-libre.kernel "linux-5.4.42" → linux_testing "linux-5.7-rc6"
linuxPackages-libre.lttng-modules "lttng-modules-2.10.5-5.4.42" → linuxPackages_latest_xen_dom0_hardened.lttng-modules "lttng-modules-2.10.5-5.6.14"
linuxPackages-libre.mwprocapture "mwprocapture-1.2.4054-5.4.42" → linuxPackages_latest_xen_dom0_hardened.mwprocapture "mwprocapture-1.2.4054-5.6.14"
linuxPackages-libre.ndiswrapper "ndiswrapper-1.62-pre-5.4.42" → linuxPackages_latest_xen_dom0_hardened.ndiswrapper "ndiswrapper-1.62-pre-5.6.14"
linuxPackages-libre.netatop "netatop-5.4.42-2.0" → linuxPackages_latest_xen_dom0_hardened.netatop "netatop-5.6.14-2.0"
linuxPackages-libre.nvidiabl "nvidiabl-2017-09-26-5.4.42" → linuxPackages_latest_xen_dom0_hardened.nvidiabl "nvidiabl-2017-09-26-5.6.14"
linuxPackages-libre.openafs "openafs-1.6.23-5.4.42-gnu" → linuxPackages_latest_xen_dom0_hardened.openafs_1_8 "openafs-1.8.5-5.6.14-hardened"
linuxPackages-libre.openrazer "openrazer-2.7.0-5.4.42" → linuxPackages_latest_xen_dom0_hardened.openrazer "openrazer-2.7.0-5.6.14"
linuxPackages-libre.perf "perf-linux-5.4.42" → linuxPackages_latest_xen_dom0_hardened.perf "perf-linux-5.6.14"
linuxPackages-libre.phc-intel "linux-phc-intel-0.4.0-rev25-5.4.42" → linuxPackages_latest_xen_dom0_hardened.phc-intel "linux-phc-intel-0.4.0-rev25-5.6.14"
linuxPackages-libre.systemtap "systemtap-5.4.42-4.1" → linuxPackages_latest_xen_dom0_hardened.systemtap "systemtap-5.6.14-4.1"
linuxPackages-libre.tbs "tbs-2018.04.18-5.4.42" → linuxPackages_latest_xen_dom0_hardened.tbs "tbs-2018.04.18-5.6.14"
linuxPackages-libre.tmon "tmon-5.4.42" → linuxPackages_latest_xen_dom0_hardened.tmon "tmon-5.6.14"
linuxPackages-libre.tp_smapi "tp_smapi-0.43-5.4.42" → linuxPackages_latest_xen_dom0_hardened.tp_smapi "tp_smapi-0.43-5.6.14"
linuxPackages-libre.turbostat "turbostat-5.4.42" → linuxPackages_latest_xen_dom0_hardened.turbostat "turbostat-5.6.14"
linuxPackages-libre.tuxedo-keyboard "tuxedo-keyboard-5.4.42-2019-08-26" → linuxPackages_latest_xen_dom0_hardened.tuxedo-keyboard "tuxedo-keyboard-5.6.14-2019-08-26"
linuxPackages-libre.usbip "usbip-linux-5.4.42" → linuxPackages_latest_xen_dom0_hardened.usbip "usbip-linux-5.6.14"
linuxPackages-libre.virtualbox "virtualbox-modules-6.1.6-5.4.42" → linuxPackages_latest_xen_dom0_hardened.virtualbox "virtualbox-modules-6.1.6-5.6.14"
linuxPackages-libre.virtualboxGuestAdditions "VirtualBox-GuestAdditions-6.1.6-5.4.42" → linuxPackages_latest_xen_dom0_hardened.virtualboxGuestAdditions "VirtualBox-GuestAdditions-6.1.6-5.6.14"
linuxPackages-libre.zfs "zfs-kernel-0.8.4-5.4.42" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages-libre.zfsStable "zfs-kernel-0.8.4-5.4.42" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages-libre.zfsUnstable "zfs-kernel-0.8.4-5.4.42" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages.acpi_call "acpi-call-2020-04-07-5.4.42" → linuxPackages_latest_xen_dom0_hardened.acpi_call "acpi-call-2020-04-07-5.6.14"
linuxPackages.amdgpu-pro "amdgpu-pro-17.40-5.4.42" → linuxPackages_latest_xen_dom0_hardened.amdgpu-pro "amdgpu-pro-17.40-5.6.14"
linuxPackages.anbox "anbox-modules-2019-11-15-5.4.42" → linuxPackages_latest_xen_dom0_hardened.anbox "anbox-modules-2019-11-15-5.6.14"
linuxPackages.asus-wmi-sensors "asus-wmi-sensors-unstable-2019-11-07-5.4.42" → linuxPackages_latest_xen_dom0_hardened.asus-wmi-sensors "asus-wmi-sensors-unstable-2019-11-07-5.6.14"
linuxPackages.batman_adv "batman-adv-2019.5-5.4.42" → linuxPackages_latest_xen_dom0_hardened.batman_adv "batman-adv-2019.5-5.6.14"
linuxPackages.bbswitch "bbswitch-0.8-5.4.42" → linuxPackages_latest_xen_dom0_hardened.bbswitch "bbswitch-0.8-5.6.14"
linuxPackages.broadcom_sta "broadcom-sta-6.30.223.271-5.4.42" → linuxPackages_latest_xen_dom0_hardened.broadcom_sta "broadcom-sta-6.30.223.271-5.6.14"
linuxPackages.cpupower "cpupower-5.4.42" → linuxPackages_latest_xen_dom0_hardened.cpupower "cpupower-5.6.14"
linuxPackages.cryptodev "cryptodev-linux-1.9-5.4.42" → linuxPackages_latest_xen_dom0_hardened.cryptodev "cryptodev-linux-1.9-5.6.14"
linuxPackages.ddcci-driver "ddcci-driver-5.4.42-0.3.3" → linuxPackages_latest_xen_dom0_hardened.ddcci-driver "ddcci-driver-5.6.14-0.3.3"
linuxPackages.deepin-anything "deepin-anything-module-5.0.1-5.4.42" → linuxPackages_latest_xen_dom0_hardened.deepin-anything "deepin-anything-module-5.0.1-5.6.14"
linuxPackages.dpdk "dpdk-19.11-5.4.42" → linuxPackages_latest_xen_dom0_hardened.dpdk "dpdk-19.11-5.6.14"
linuxPackages.ena "ena-2.2.7-5.4.42" → linuxPackages_latest_xen_dom0_hardened.ena "ena-2.2.7-5.6.14"
linuxPackages.exfat-nofuse "exfat-nofuse-2019-09-06-5.4.42" → linuxPackages_latest_xen_dom0_hardened.exfat-nofuse "exfat-nofuse-2019-09-06-5.6.14"
linuxPackages.facetimehd "facetimehd-unstable-2019-12-10-5.4.42" → linuxPackages_latest_xen_dom0_hardened.facetimehd "facetimehd-unstable-2019-12-10-5.6.14"
linuxPackages.fwts-efi-runtime "fwts-efi-runtime-20.03.00-5.4.42" → linuxPackages_latest_xen_dom0_hardened.fwts-efi-runtime "fwts-efi-runtime-20.03.00-5.6.14"
linuxPackages.hyperv-daemons "hyperv-daemons-5.4.42" → linuxPackages_latest_xen_dom0_hardened.hyperv-daemons "hyperv-daemons-5.6.14"
linuxPackages.intel-speed-select "intel-speed-select-5.4.42" → linuxPackages_latest_xen_dom0_hardened.intel-speed-select "intel-speed-select-5.6.14"
linuxPackages.ixgbevf "ixgbevf-4.6.1-5.4.42" → linuxPackages_latest_xen_dom0_hardened.ixgbevf "ixgbevf-4.6.1-5.6.14"
linuxPackages.jool "jool-4.0.5-5.4.42" → linuxPackages_latest_xen_dom0_hardened.jool "jool-4.0.5-5.6.14"
linuxPackages.kernel "linux-5.4.42" → linux_testing "linux-5.7-rc6"
linuxPackages.lttng-modules "lttng-modules-2.10.5-5.4.42" → linuxPackages_latest_xen_dom0_hardened.lttng-modules "lttng-modules-2.10.5-5.6.14"
linuxPackages.mwprocapture "mwprocapture-1.2.4054-5.4.42" → linuxPackages_latest_xen_dom0_hardened.mwprocapture "mwprocapture-1.2.4054-5.6.14"
linuxPackages.ndiswrapper "ndiswrapper-1.62-pre-5.4.42" → linuxPackages_latest_xen_dom0_hardened.ndiswrapper "ndiswrapper-1.62-pre-5.6.14"
linuxPackages.netatop "netatop-5.4.42-2.0" → linuxPackages_latest_xen_dom0_hardened.netatop "netatop-5.6.14-2.0"
linuxPackages.nvidiabl "nvidiabl-2017-09-26-5.4.42" → linuxPackages_latest_xen_dom0_hardened.nvidiabl "nvidiabl-2017-09-26-5.6.14"
linuxPackages.openafs "openafs-1.6.23-5.4.42" → linuxPackages_latest_xen_dom0_hardened.openafs_1_8 "openafs-1.8.5-5.6.14-hardened"
linuxPackages.openrazer "openrazer-2.7.0-5.4.42" → linuxPackages_latest_xen_dom0_hardened.openrazer "openrazer-2.7.0-5.6.14"
linuxPackages.perf "perf-linux-5.4.42" → linuxPackages_latest_xen_dom0_hardened.perf "perf-linux-5.6.14"
linuxPackages.phc-intel "linux-phc-intel-0.4.0-rev25-5.4.42" → linuxPackages_latest_xen_dom0_hardened.phc-intel "linux-phc-intel-0.4.0-rev25-5.6.14"
linuxPackages.systemtap "systemtap-5.4.42-4.1" → linuxPackages_latest_xen_dom0_hardened.systemtap "systemtap-5.6.14-4.1"
linuxPackages.tbs "tbs-2018.04.18-5.4.42" → linuxPackages_latest_xen_dom0_hardened.tbs "tbs-2018.04.18-5.6.14"
linuxPackages.tmon "tmon-5.4.42" → linuxPackages_latest_xen_dom0_hardened.tmon "tmon-5.6.14"
linuxPackages.tp_smapi "tp_smapi-0.43-5.4.42" → linuxPackages_latest_xen_dom0_hardened.tp_smapi "tp_smapi-0.43-5.6.14"
linuxPackages.turbostat "turbostat-5.4.42" → linuxPackages_latest_xen_dom0_hardened.turbostat "turbostat-5.6.14"
linuxPackages.tuxedo-keyboard "tuxedo-keyboard-5.4.42-2019-08-26" → linuxPackages_latest_xen_dom0_hardened.tuxedo-keyboard "tuxedo-keyboard-5.6.14-2019-08-26"
linuxPackages.usbip "usbip-linux-5.4.42" → linuxPackages_latest_xen_dom0_hardened.usbip "usbip-linux-5.6.14"
linuxPackages.virtualbox "virtualbox-modules-6.1.6-5.4.42" → linuxPackages_latest_xen_dom0_hardened.virtualbox "virtualbox-modules-6.1.6-5.6.14"
linuxPackages.virtualboxGuestAdditions "VirtualBox-GuestAdditions-6.1.6-5.4.42" → linuxPackages_latest_xen_dom0_hardened.virtualboxGuestAdditions "VirtualBox-GuestAdditions-6.1.6-5.6.14"
linuxPackages.zfs "zfs-kernel-0.8.4-5.4.42" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages.zfsStable "zfs-kernel-0.8.4-5.4.42" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages.zfsUnstable "zfs-kernel-0.8.4-5.4.42" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages_custom_tinyconfig_kernel "linux-5.4.42" → linux_testing "linux-5.7-rc6"
linuxPackages_hardened.acpi_call "acpi-call-2020-04-07-5.4.42" → linuxPackages_latest_xen_dom0_hardened.acpi_call "acpi-call-2020-04-07-5.6.14"
linuxPackages_hardened.amdgpu-pro "amdgpu-pro-17.40-5.4.42" → linuxPackages_latest_xen_dom0_hardened.amdgpu-pro "amdgpu-pro-17.40-5.6.14"
linuxPackages_hardened.anbox "anbox-modules-2019-11-15-5.4.42" → linuxPackages_latest_xen_dom0_hardened.anbox "anbox-modules-2019-11-15-5.6.14"
linuxPackages_hardened.asus-wmi-sensors "asus-wmi-sensors-unstable-2019-11-07-5.4.42" → linuxPackages_latest_xen_dom0_hardened.asus-wmi-sensors "asus-wmi-sensors-unstable-2019-11-07-5.6.14"
linuxPackages_hardened.batman_adv "batman-adv-2019.5-5.4.42" → linuxPackages_latest_xen_dom0_hardened.batman_adv "batman-adv-2019.5-5.6.14"
linuxPackages_hardened.bbswitch "bbswitch-0.8-5.4.42" → linuxPackages_latest_xen_dom0_hardened.bbswitch "bbswitch-0.8-5.6.14"
linuxPackages_hardened.broadcom_sta "broadcom-sta-6.30.223.271-5.4.42" → linuxPackages_latest_xen_dom0_hardened.broadcom_sta "broadcom-sta-6.30.223.271-5.6.14"
linuxPackages_hardened.cpupower "cpupower-5.4.42" → linuxPackages_latest_xen_dom0_hardened.cpupower "cpupower-5.6.14"
linuxPackages_hardened.cryptodev "cryptodev-linux-1.9-5.4.42" → linuxPackages_latest_xen_dom0_hardened.cryptodev "cryptodev-linux-1.9-5.6.14"
linuxPackages_hardened.ddcci-driver "ddcci-driver-5.4.42-0.3.3" → linuxPackages_latest_xen_dom0_hardened.ddcci-driver "ddcci-driver-5.6.14-0.3.3"
linuxPackages_hardened.deepin-anything "deepin-anything-module-5.0.1-5.4.42" → linuxPackages_latest_xen_dom0_hardened.deepin-anything "deepin-anything-module-5.0.1-5.6.14"
linuxPackages_hardened.dpdk "dpdk-19.11-5.4.42" → linuxPackages_latest_xen_dom0_hardened.dpdk "dpdk-19.11-5.6.14"
linuxPackages_hardened.ena "ena-2.2.7-5.4.42" → linuxPackages_latest_xen_dom0_hardened.ena "ena-2.2.7-5.6.14"
linuxPackages_hardened.exfat-nofuse "exfat-nofuse-2019-09-06-5.4.42" → linuxPackages_latest_xen_dom0_hardened.exfat-nofuse "exfat-nofuse-2019-09-06-5.6.14"
linuxPackages_hardened.facetimehd "facetimehd-unstable-2019-12-10-5.4.42" → linuxPackages_latest_xen_dom0_hardened.facetimehd "facetimehd-unstable-2019-12-10-5.6.14"
linuxPackages_hardened.fwts-efi-runtime "fwts-efi-runtime-20.03.00-5.4.42" → linuxPackages_latest_xen_dom0_hardened.fwts-efi-runtime "fwts-efi-runtime-20.03.00-5.6.14"
linuxPackages_hardened.hyperv-daemons "hyperv-daemons-5.4.42" → linuxPackages_latest_xen_dom0_hardened.hyperv-daemons "hyperv-daemons-5.6.14"
linuxPackages_hardened.intel-speed-select "intel-speed-select-5.4.42" → linuxPackages_latest_xen_dom0_hardened.intel-speed-select "intel-speed-select-5.6.14"
linuxPackages_hardened.ixgbevf "ixgbevf-4.6.1-5.4.42" → linuxPackages_latest_xen_dom0_hardened.ixgbevf "ixgbevf-4.6.1-5.6.14"
linuxPackages_hardened.jool "jool-4.0.5-5.4.42" → linuxPackages_latest_xen_dom0_hardened.jool "jool-4.0.5-5.6.14"
linuxPackages_hardened.kernel "linux-5.4.42" → linux_testing "linux-5.7-rc6"
linuxPackages_hardened.lttng-modules "lttng-modules-2.10.5-5.4.42" → linuxPackages_latest_xen_dom0_hardened.lttng-modules "lttng-modules-2.10.5-5.6.14"
linuxPackages_hardened.mwprocapture "mwprocapture-1.2.4054-5.4.42" → linuxPackages_latest_xen_dom0_hardened.mwprocapture "mwprocapture-1.2.4054-5.6.14"
linuxPackages_hardened.ndiswrapper "ndiswrapper-1.62-pre-5.4.42" → linuxPackages_latest_xen_dom0_hardened.ndiswrapper "ndiswrapper-1.62-pre-5.6.14"
linuxPackages_hardened.netatop "netatop-5.4.42-2.0" → linuxPackages_latest_xen_dom0_hardened.netatop "netatop-5.6.14-2.0"
linuxPackages_hardened.nvidiabl "nvidiabl-2017-09-26-5.4.42" → linuxPackages_latest_xen_dom0_hardened.nvidiabl "nvidiabl-2017-09-26-5.6.14"
linuxPackages_hardened.openafs "openafs-1.6.23-5.4.42-hardened" → linuxPackages_latest_xen_dom0_hardened.openafs_1_8 "openafs-1.8.5-5.6.14-hardened"
linuxPackages_hardened.openrazer "openrazer-2.7.0-5.4.42" → linuxPackages_latest_xen_dom0_hardened.openrazer "openrazer-2.7.0-5.6.14"
linuxPackages_hardened.perf "perf-linux-5.4.42" → linuxPackages_latest_xen_dom0_hardened.perf "perf-linux-5.6.14"
linuxPackages_hardened.phc-intel "linux-phc-intel-0.4.0-rev25-5.4.42" → linuxPackages_latest_xen_dom0_hardened.phc-intel "linux-phc-intel-0.4.0-rev25-5.6.14"
linuxPackages_hardened.systemtap "systemtap-5.4.42-4.1" → linuxPackages_latest_xen_dom0_hardened.systemtap "systemtap-5.6.14-4.1"
linuxPackages_hardened.tbs "tbs-2018.04.18-5.4.42" → linuxPackages_latest_xen_dom0_hardened.tbs "tbs-2018.04.18-5.6.14"
linuxPackages_hardened.tmon "tmon-5.4.42" → linuxPackages_latest_xen_dom0_hardened.tmon "tmon-5.6.14"
linuxPackages_hardened.tp_smapi "tp_smapi-0.43-5.4.42" → linuxPackages_latest_xen_dom0_hardened.tp_smapi "tp_smapi-0.43-5.6.14"
linuxPackages_hardened.turbostat "turbostat-5.4.42" → linuxPackages_latest_xen_dom0_hardened.turbostat "turbostat-5.6.14"
linuxPackages_hardened.tuxedo-keyboard "tuxedo-keyboard-5.4.42-2019-08-26" → linuxPackages_latest_xen_dom0_hardened.tuxedo-keyboard "tuxedo-keyboard-5.6.14-2019-08-26"
linuxPackages_hardened.usbip "usbip-linux-5.4.42" → linuxPackages_latest_xen_dom0_hardened.usbip "usbip-linux-5.6.14"
linuxPackages_hardened.virtualbox "virtualbox-modules-6.1.6-5.4.42" → linuxPackages_latest_xen_dom0_hardened.virtualbox "virtualbox-modules-6.1.6-5.6.14"
linuxPackages_hardened.virtualboxGuestAdditions "VirtualBox-GuestAdditions-6.1.6-5.4.42" → linuxPackages_latest_xen_dom0_hardened.virtualboxGuestAdditions "VirtualBox-GuestAdditions-6.1.6-5.6.14"
linuxPackages_hardened.zfs "zfs-kernel-0.8.4-5.4.42" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages_hardened.zfsStable "zfs-kernel-0.8.4-5.4.42" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages_hardened.zfsUnstable "zfs-kernel-0.8.4-5.4.42" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages_hardkernel_latest.acpi_call "acpi-call-2020-04-07-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.acpi_call "acpi-call-2020-04-07-5.6.14"
linuxPackages_hardkernel_latest.amdgpu-pro "amdgpu-pro-17.40-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.amdgpu-pro "amdgpu-pro-17.40-5.6.14"
linuxPackages_hardkernel_latest.anbox "anbox-modules-2019-11-15-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.anbox "anbox-modules-2019-11-15-5.6.14"
linuxPackages_hardkernel_latest.asus-wmi-sensors "asus-wmi-sensors-unstable-2019-11-07-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.asus-wmi-sensors "asus-wmi-sensors-unstable-2019-11-07-5.6.14"
linuxPackages_hardkernel_latest.batman_adv "batman-adv-2019.5-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.batman_adv "batman-adv-2019.5-5.6.14"
linuxPackages_hardkernel_latest.bbswitch "bbswitch-0.8-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.bbswitch "bbswitch-0.8-5.6.14"
linuxPackages_hardkernel_latest.broadcom_sta "broadcom-sta-6.30.223.271-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.broadcom_sta "broadcom-sta-6.30.223.271-5.6.14"
linuxPackages_hardkernel_latest.cpupower "cpupower-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.cpupower "cpupower-5.6.14"
linuxPackages_hardkernel_latest.cryptodev "cryptodev-linux-1.9-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.cryptodev "cryptodev-linux-1.9-5.6.14"
linuxPackages_hardkernel_latest.ddcci-driver "ddcci-driver-4.14.165-172-0.3.3" → linuxPackages_latest_xen_dom0_hardened.ddcci-driver "ddcci-driver-5.6.14-0.3.3"
linuxPackages_hardkernel_latest.deepin-anything "deepin-anything-module-5.0.1-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.deepin-anything "deepin-anything-module-5.0.1-5.6.14"
linuxPackages_hardkernel_latest.dpdk "dpdk-19.11-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.dpdk "dpdk-19.11-5.6.14"
linuxPackages_hardkernel_latest.ena "ena-2.2.7-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.ena "ena-2.2.7-5.6.14"
linuxPackages_hardkernel_latest.exfat-nofuse "exfat-nofuse-2019-09-06-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.exfat-nofuse "exfat-nofuse-2019-09-06-5.6.14"
linuxPackages_hardkernel_latest.facetimehd "facetimehd-unstable-2019-12-10-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.facetimehd "facetimehd-unstable-2019-12-10-5.6.14"
linuxPackages_hardkernel_latest.fwts-efi-runtime "fwts-efi-runtime-20.03.00-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.fwts-efi-runtime "fwts-efi-runtime-20.03.00-5.6.14"
linuxPackages_hardkernel_latest.hyperv-daemons "hyperv-daemons-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.hyperv-daemons "hyperv-daemons-5.6.14"
linuxPackages_hardkernel_latest.ixgbevf "ixgbevf-4.6.1-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.ixgbevf "ixgbevf-4.6.1-5.6.14"
linuxPackages_hardkernel_latest.jool "jool-4.0.5-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.jool "jool-4.0.5-5.6.14"
linuxPackages_hardkernel_latest.kernel "linux-4.14.165-172" → linux_testing "linux-5.7-rc6"
linuxPackages_hardkernel_latest.lttng-modules "lttng-modules-2.10.5-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.lttng-modules "lttng-modules-2.10.5-5.6.14"
linuxPackages_hardkernel_latest.mwprocapture "mwprocapture-1.2.4054-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.mwprocapture "mwprocapture-1.2.4054-5.6.14"
linuxPackages_hardkernel_latest.ndiswrapper "ndiswrapper-1.62-pre-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.ndiswrapper "ndiswrapper-1.62-pre-5.6.14"
linuxPackages_hardkernel_latest.netatop "netatop-4.14.165-172-2.0" → linuxPackages_latest_xen_dom0_hardened.netatop "netatop-5.6.14-2.0"
linuxPackages_hardkernel_latest.nvidiabl "nvidiabl-2017-09-26-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.nvidiabl "nvidiabl-2017-09-26-5.6.14"
linuxPackages_hardkernel_latest.openafs "openafs-1.6.23-4.14.165" → linuxPackages_latest_xen_dom0_hardened.openafs_1_8 "openafs-1.8.5-5.6.14-hardened"
linuxPackages_hardkernel_latest.openrazer "openrazer-2.7.0-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.openrazer "openrazer-2.7.0-5.6.14"
linuxPackages_hardkernel_latest.perf "perf-linux-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.perf "perf-linux-5.6.14"
linuxPackages_hardkernel_latest.phc-intel "linux-phc-intel-0.4.0-rev25-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.phc-intel "linux-phc-intel-0.4.0-rev25-5.6.14"
linuxPackages_hardkernel_latest.systemtap "systemtap-4.14.165-172-4.1" → linuxPackages_latest_xen_dom0_hardened.systemtap "systemtap-5.6.14-4.1"
linuxPackages_hardkernel_latest.tbs "tbs-2018.04.18-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.tbs "tbs-2018.04.18-5.6.14"
linuxPackages_hardkernel_latest.tmon "tmon-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.tmon "tmon-5.6.14"
linuxPackages_hardkernel_latest.tp_smapi "tp_smapi-0.43-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.tp_smapi "tp_smapi-0.43-5.6.14"
linuxPackages_hardkernel_latest.turbostat "turbostat-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.turbostat "turbostat-5.6.14"
linuxPackages_hardkernel_latest.tuxedo-keyboard "tuxedo-keyboard-4.14.165-172-2019-08-26" → linuxPackages_latest_xen_dom0_hardened.tuxedo-keyboard "tuxedo-keyboard-5.6.14-2019-08-26"
linuxPackages_hardkernel_latest.usbip "usbip-linux-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.usbip "usbip-linux-5.6.14"
linuxPackages_hardkernel_latest.virtualbox "virtualbox-modules-6.1.6-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.virtualbox "virtualbox-modules-6.1.6-5.6.14"
linuxPackages_hardkernel_latest.virtualboxGuestAdditions "VirtualBox-GuestAdditions-6.1.6-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.virtualboxGuestAdditions "VirtualBox-GuestAdditions-6.1.6-5.6.14"
linuxPackages_hardkernel_latest.zfs "zfs-kernel-0.8.4-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages_hardkernel_latest.zfsStable "zfs-kernel-0.8.4-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages_hardkernel_latest.zfsUnstable "zfs-kernel-0.8.4-4.14.165-172" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages_latest-libre.kernel "linux-5.6.14" → linux_testing "linux-5.7-rc6"
linuxPackages_latest-libre.openafs "openafs-1.6.23-5.6.14-gnu" → linuxPackages_latest_xen_dom0_hardened.openafs_1_8 "openafs-1.8.5-5.6.14-hardened"
linuxPackages_latest.kernel "linux-5.6.14" → linux_testing "linux-5.7-rc6"
linuxPackages_latest.openafs "openafs-1.6.23-5.6.14" → linuxPackages_latest_xen_dom0_hardened.openafs_1_8 "openafs-1.8.5-5.6.14-hardened"
linuxPackages_latest_hardened.kernel "linux-5.6.14" → linux_testing "linux-5.7-rc6"
linuxPackages_latest_hardened.openafs "openafs-1.6.23-5.6.14-hardened" → linuxPackages_latest_xen_dom0_hardened.openafs_1_8 "openafs-1.8.5-5.6.14-hardened"
linuxPackages_testing_bcachefs.acpi_call "acpi-call-2020-04-07-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.acpi_call "acpi-call-2020-04-07-5.6.14"
linuxPackages_testing_bcachefs.amdgpu-pro "amdgpu-pro-17.40-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.amdgpu-pro "amdgpu-pro-17.40-5.6.14"
linuxPackages_testing_bcachefs.anbox "anbox-modules-2019-11-15-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.anbox "anbox-modules-2019-11-15-5.6.14"
linuxPackages_testing_bcachefs.asus-wmi-sensors "asus-wmi-sensors-unstable-2019-11-07-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.asus-wmi-sensors "asus-wmi-sensors-unstable-2019-11-07-5.6.14"
linuxPackages_testing_bcachefs.batman_adv "batman-adv-2019.5-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.batman_adv "batman-adv-2019.5-5.6.14"
linuxPackages_testing_bcachefs.bbswitch "bbswitch-0.8-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.bbswitch "bbswitch-0.8-5.6.14"
linuxPackages_testing_bcachefs.broadcom_sta "broadcom-sta-6.30.223.271-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.broadcom_sta "broadcom-sta-6.30.223.271-5.6.14"
linuxPackages_testing_bcachefs.cpupower "cpupower-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.cpupower "cpupower-5.6.14"
linuxPackages_testing_bcachefs.cryptodev "cryptodev-linux-1.9-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.cryptodev "cryptodev-linux-1.9-5.6.14"
linuxPackages_testing_bcachefs.ddcci-driver "ddcci-driver-5.3.2020.04.04-0.3.3" → linuxPackages_latest_xen_dom0_hardened.ddcci-driver "ddcci-driver-5.6.14-0.3.3"
linuxPackages_testing_bcachefs.deepin-anything "deepin-anything-module-5.0.1-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.deepin-anything "deepin-anything-module-5.0.1-5.6.14"
linuxPackages_testing_bcachefs.dpdk "dpdk-19.11-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.dpdk "dpdk-19.11-5.6.14"
linuxPackages_testing_bcachefs.ena "ena-2.2.7-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.ena "ena-2.2.7-5.6.14"
linuxPackages_testing_bcachefs.exfat-nofuse "exfat-nofuse-2019-09-06-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.exfat-nofuse "exfat-nofuse-2019-09-06-5.6.14"
linuxPackages_testing_bcachefs.facetimehd "facetimehd-unstable-2019-12-10-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.facetimehd "facetimehd-unstable-2019-12-10-5.6.14"
linuxPackages_testing_bcachefs.fwts-efi-runtime "fwts-efi-runtime-20.03.00-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.fwts-efi-runtime "fwts-efi-runtime-20.03.00-5.6.14"
linuxPackages_testing_bcachefs.hyperv-daemons "hyperv-daemons-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.hyperv-daemons "hyperv-daemons-5.6.14"
linuxPackages_testing_bcachefs.intel-speed-select "intel-speed-select-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.intel-speed-select "intel-speed-select-5.6.14"
linuxPackages_testing_bcachefs.ixgbevf "ixgbevf-4.6.1-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.ixgbevf "ixgbevf-4.6.1-5.6.14"
linuxPackages_testing_bcachefs.jool "jool-4.0.5-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.jool "jool-4.0.5-5.6.14"
linuxPackages_testing_bcachefs.kernel "linux-5.3.2020.04.04" → linux_testing "linux-5.7-rc6"
linuxPackages_testing_bcachefs.lttng-modules "lttng-modules-2.10.5-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.lttng-modules "lttng-modules-2.10.5-5.6.14"
linuxPackages_testing_bcachefs.mwprocapture "mwprocapture-1.2.4054-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.mwprocapture "mwprocapture-1.2.4054-5.6.14"
linuxPackages_testing_bcachefs.ndiswrapper "ndiswrapper-1.62-pre-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.ndiswrapper "ndiswrapper-1.62-pre-5.6.14"
linuxPackages_testing_bcachefs.netatop "netatop-5.3.2020.04.04-2.0" → linuxPackages_latest_xen_dom0_hardened.netatop "netatop-5.6.14-2.0"
linuxPackages_testing_bcachefs.nvidiabl "nvidiabl-2017-09-26-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.nvidiabl "nvidiabl-2017-09-26-5.6.14"
linuxPackages_testing_bcachefs.openafs "openafs-1.6.23-5.3.0" → linuxPackages_latest_xen_dom0_hardened.openafs_1_8 "openafs-1.8.5-5.6.14-hardened"
linuxPackages_testing_bcachefs.openrazer "openrazer-2.7.0-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.openrazer "openrazer-2.7.0-5.6.14"
linuxPackages_testing_bcachefs.perf "perf-linux-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.perf "perf-linux-5.6.14"
linuxPackages_testing_bcachefs.phc-intel "linux-phc-intel-0.4.0-rev25-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.phc-intel "linux-phc-intel-0.4.0-rev25-5.6.14"
linuxPackages_testing_bcachefs.systemtap "systemtap-5.3.2020.04.04-4.1" → linuxPackages_latest_xen_dom0_hardened.systemtap "systemtap-5.6.14-4.1"
linuxPackages_testing_bcachefs.tbs "tbs-2018.04.18-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.tbs "tbs-2018.04.18-5.6.14"
linuxPackages_testing_bcachefs.tmon "tmon-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.tmon "tmon-5.6.14"
linuxPackages_testing_bcachefs.tp_smapi "tp_smapi-0.43-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.tp_smapi "tp_smapi-0.43-5.6.14"
linuxPackages_testing_bcachefs.turbostat "turbostat-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.turbostat "turbostat-5.6.14"
linuxPackages_testing_bcachefs.tuxedo-keyboard "tuxedo-keyboard-5.3.2020.04.04-2019-08-26" → linuxPackages_latest_xen_dom0_hardened.tuxedo-keyboard "tuxedo-keyboard-5.6.14-2019-08-26"
linuxPackages_testing_bcachefs.usbip "usbip-linux-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.usbip "usbip-linux-5.6.14"
linuxPackages_testing_bcachefs.virtualbox "virtualbox-modules-6.1.6-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.virtualbox "virtualbox-modules-6.1.6-5.6.14"
linuxPackages_testing_bcachefs.virtualboxGuestAdditions "VirtualBox-GuestAdditions-6.1.6-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.virtualboxGuestAdditions "VirtualBox-GuestAdditions-6.1.6-5.6.14"
linuxPackages_testing_bcachefs.zfs "zfs-kernel-0.8.4-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages_testing_bcachefs.zfsStable "zfs-kernel-0.8.4-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linuxPackages_testing_bcachefs.zfsUnstable "zfs-kernel-0.8.4-5.3.2020.04.04" → linuxPackages_latest_xen_dom0_hardened.zfsUnstable "zfs-kernel-0.8.4-5.6.14"
linux_hardened "linux-5.4.42" → linux_testing "linux-5.7-rc6"
linux_hardkernel_latest "linux-4.14.165-172" → linux_testing "linux-5.7-rc6"
linux_latest "linux-5.6.14" → linux_testing "linux-5.7-rc6"
linux_latest-libre "linux-5.6.14" → linux_testing "linux-5.7-rc6"
linux_latest_hardened "linux-5.6.14" → linux_testing "linux-5.7-rc6"
linux_mptcp "linux-4.19.55-mptcp_v0.95" → linux_testing "linux-5.7-rc6"
linux_testing_bcachefs "linux-5.3.2020.04.04" → linux_testing "linux-5.7-rc6"
linuxquota "quota-4.05" → unixtools.quota "quota-1003.1-2008"
lld "lld-7.1.0" → lld_10 "lld-10.0.0"
lldb "lldb-7.1.0" → lldb_10 "lldb-10.0.0"
llvm "llvm-7.1.0" → llvm_10 "llvm-10.0.0"
llvmPackages.clang "clang-wrapper-7.1.0" → clang_10 "clang-wrapper-10.0.0"
llvmPackages.libcxxClang "clang-wrapper-7.1.0" → clang_10 "clang-wrapper-10.0.0"
llvmPackages.libstdcxxClang "clang-wrapper-7.1.0" → clang_10 "clang-wrapper-10.0.0"
llvmPackages.lld "lld-7.1.0" → lld_10 "lld-10.0.0"
llvmPackages.lldClang "clang-wrapper-7.1.0" → clang_10 "clang-wrapper-10.0.0"
llvmPackages.lldClangNoCompilerRt "clang-wrapper-7.1.0" → clang_10 "clang-wrapper-10.0.0"
llvmPackages.lldClangNoLibc "clang-wrapper-7.1.0" → clang_10 "clang-wrapper-10.0.0"
llvmPackages.lldb "lldb-7.1.0" → lldb_10 "lldb-10.0.0"
llvmPackages.llvm "llvm-7.1.0" → llvm_10 "llvm-10.0.0"
llvmPackages.llvm-polly "llvm-7.1.0" → llvm_10 "llvm-10.0.0"
logstash "logstash-6.8.3" → logstash7 "logstash-7.5.1"
love "love-0.10.2" → love_11 "love-11.3"
lua "lua-5.2.4" → lua5_3_compat "lua-5.3.5"
luaPackages.lua "lua-5.2.4" → lua5_3_compat "lua-5.3.5"
luajit "luajit-2.1.0-2020-03-20" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.alt-getopt "luajit-2.1.0-2020-03-20-alt-getopt-0.8.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.ansicolors "luajit-2.1.0-2020-03-20-ansicolors-1.0.2-3" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.argparse "luajit-2.1.0-2020-03-20-argparse-0.6.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.basexx "luajit-2.1.0-2020-03-20-basexx-0.4.1-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.binaryheap "luajit-2.1.0-2020-03-20-binaryheap-0.4-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.busted "luajit-2.1.0-2020-03-20-busted-2.0.rc13-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.cassowary "luajit-2.1.0-2020-03-20-cassowary-2.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.cjson "luajit-2.1.0-2020-03-20-lua-cjson-2.1.0.6-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.cosmo "luajit-2.1.0-2020-03-20-cosmo-16.06.04-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.coxpcall "luajit-2.1.0-2020-03-20-coxpcall-1.17.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.cqueues "luajit-2.1.0-2020-03-20-cqueues-20190731-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.cyrussasl "luajit-2.1.0-2020-03-20-cyrussasl-1.1.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.digestif "luajit-2.1.0-2020-03-20-digestif-0.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.dkjson "luajit-2.1.0-2020-03-20-dkjson-2.5-2" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.fifo "luajit-2.1.0-2020-03-20-fifo-0.2-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.http "luajit-2.1.0-2020-03-20-http-0.3-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.inspect "luajit-2.1.0-2020-03-20-inspect-3.1.1-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.ldoc "luajit-2.1.0-2020-03-20-ldoc-1.4.6-2" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lgi "luajit-2.1.0-2020-03-20-lgi-0.9.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.linenoise "luajit-2.1.0-2020-03-20-linenoise-0.9-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.ljsyscall "luajit-2.1.0-2020-03-20-ljsyscall-unstable-20180515" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lpeg "luajit-2.1.0-2020-03-20-lpeg-1.0.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lpeg_patterns "luajit-2.1.0-2020-03-20-lpeg_patterns-0.5-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lpeglabel "luajit-2.1.0-2020-03-20-lpeglabel-1.5.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lpty "luajit-2.1.0-2020-03-20-lpty-1.2.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lrexlib-gnu "luajit-2.1.0-2020-03-20-lrexlib-gnu-2.9.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lrexlib-pcre "luajit-2.1.0-2020-03-20-lrexlib-pcre-2.9.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lrexlib-posix "luajit-2.1.0-2020-03-20-lrexlib-posix-2.9.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.ltermbox "luajit-2.1.0-2020-03-20-ltermbox-0.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lua "luajit-2.1.0-2020-03-20" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lua-cmsgpack "luajit-2.1.0-2020-03-20-lua-cmsgpack-0.4.0-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lua-iconv "luajit-2.1.0-2020-03-20-lua-iconv-7-3" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lua-lsp "luajit-2.1.0-2020-03-20-lua-lsp-scm-2" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lua-messagepack "luajit-2.1.0-2020-03-20-lua-messagepack-0.5.1-2" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lua-term "luajit-2.1.0-2020-03-20-lua-term-0.7-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lua-toml "luajit-2.1.0-2020-03-20-lua-toml-2.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lua-yajl "luajit-2.1.0-2020-03-20-lua-yajl-2.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lua-zlib "luajit-2.1.0-2020-03-20-lua-zlib-1.2-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lua_cliargs "luajit-2.1.0-2020-03-20-lua_cliargs-3.0-2" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luabitop "luajit-2.1.0-2020-03-20-luabitop-1.0.2-3" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luacheck "luajit-2.1.0-2020-03-20-luacheck-0.23.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luacov "luajit-2.1.0-2020-03-20-luacov-0.13.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luadbi "luajit-2.1.0-2020-03-20-luadbi-0.7.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luadbi-mysql "luajit-2.1.0-2020-03-20-luadbi-mysql-0.7.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luadbi-postgresql "luajit-2.1.0-2020-03-20-luadbi-postgresql-0.7.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luadoc "luajit-2.1.0-2020-03-20-luadoc-3.0.1-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luaepnf "luajit-2.1.0-2020-03-20-luaepnf-0.3-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luaevent "luajit-2.1.0-2020-03-20-luaevent-0.4.6-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luaexpat "luajit-2.1.0-2020-03-20-luaexpat-1.3.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luaffi "luajit-2.1.0-2020-03-20-luaffi-scm-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luafilesystem "luajit-2.1.0-2020-03-20-luafilesystem-1.7.0-2" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.lualogging "luajit-2.1.0-2020-03-20-lualogging-1.3.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luaossl "luajit-2.1.0-2020-03-20-luaossl-20190731-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luaposix "luajit-2.1.0-2020-03-20-luaposix-34.0.4-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luarepl "luajit-2.1.0-2020-03-20-luarepl-0.9-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luasec "luajit-2.1.0-2020-03-20-luasec-0.8-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luasocket "luajit-2.1.0-2020-03-20-luasocket-3.0rc1-2" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luassert "luajit-2.1.0-2020-03-20-luassert-1.7.11-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luasystem "luajit-2.1.0-2020-03-20-luasystem-0.2.1-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luazip "luajit-2.1.0-2020-03-20-luazip-1.2.7-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luuid "luajit-2.1.0-2020-03-20-luuid-20120509-2" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.luv "luajit-2.1.0-2020-03-20-luv-1.30.0-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.markdown "luajit-2.1.0-2020-03-20-markdown-0.33-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.mediator_lua "luajit-2.1.0-2020-03-20-mediator_lua-1.1.2-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.moonscript "luajit-2.1.0-2020-03-20-moonscript-0.5.0-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.mpack "luajit-2.1.0-2020-03-20-mpack-1.0.7-0" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.nvim-client "luajit-2.1.0-2020-03-20-nvim-client-0.2.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.penlight "luajit-2.1.0-2020-03-20-penlight-1.5.4-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.rapidjson "luajit-2.1.0-2020-03-20-rapidjson-0.5.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.say "luajit-2.1.0-2020-03-20-say-1.3-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.std__debug "luajit-2.1.0-2020-03-20-std._debug-1.0.1-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.std_normalize "luajit-2.1.0-2020-03-20-std.normalize-2.0.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
luajitPackages.stdlib "luajit-2.1.0-2020-03-20-stdlib-41.2.2-1" → luajitPackages.vstruct "luajit-2.1.0-2020-03-20-vstruct-2.0.2-1"
marathon "marathon-1.4.2" → alephone-marathon "marathon-20190331"
metricbeat "metricbeat-6.8.3" → metricbeat7 "metricbeat-7.5.1"
miniupnpc "miniupnpc-1.9.20160209" → miniupnpc_2 "miniupnpc-2.1.20190625"
mongodb "mongodb-3.4.24" → mongodb-4_0 "mongodb-4.0.12"
mono "mono-5.20.1.27" → mono6 "mono-6.0.0.313"
ncurses "ncurses-6.2" → ncurses5 "ncurses-6.2-abi5-compat"
nix "nix-2.3.4" → nixFlakes "nix-2.4pre20200521_00b562c"
nixStable "nix-2.3.4" → nixFlakes "nix-2.4pre20200521_00b562c"
nixUnstable "nix-2.4pre7534_b92f58f6" → nixFlakes "nix-2.4pre20200521_00b562c"
nixopsUnstable "nixops-1.7pre2764_932bf43" → nixops "nixops-1.7"
nodejs "nodejs-10.20.1" → nodejs_latest "nodejs-14.3.0"
nodejs-slim "nodejs-slim-10.20.1" → nodejs-slim_latest "nodejs-slim-14.3.0"
nootka "nootka-1.4.7" → nootka-unstable "nootka-1.7.0-beta1"
notify-osd "notify-osd-0.9.34" → notify-osd-customizable "notify-osd-0.9.35+16.04.20160415"
ocamlPackages.dune "dune-1.11.4" → ocamlPackages.dune_2 "dune-2.5.1"
ocamlPackages.sedlex "ocaml4.10.0-sedlex-1.99.5" → ocamlPackages.sedlex_2 "ocaml4.10.0-sedlex-2.1"
octopus-caller "octopus-0.6.3-beta" → octopus "octopus-9.2"
openafs "openafs-1.6.23" → linuxPackages_latest_xen_dom0_hardened.openafs_1_8 "openafs-1.8.5-5.6.14-hardened"
openapi-generator-cli "openapi-generator-cli-4.2.2" → openapi-generator-cli-unstable "openapi-generator-cli-5.0.0-2020-02-04"
opendylan_bin "opendylan-2013.2" → opendylan "opendylan-2016.1pre"
openimageio "openimageio-1.8.17" → openimageio2 "openimageio-2.1.9.0"
openjdk "openjdk-8u242-b08" → openjdk14 "openjdk-14.0.1-ga"
openjdk_headless "openjdk-headless-8u242-b08" → openjdk14_headless "openjdk-headless-14.0.1-ga"
openvswitch-lts "openvswitch-2.5.9" → openvswitch "openvswitch-2.13.0"
packetbeat "packetbeat-6.8.3" → packetbeat7 "packetbeat-7.5.1"
pantheon.mutter "mutter-3.34.5" → gnome3.mutter "mutter-3.36.2"
pantheon.switchboard "switchboard-2.3.9" → pantheon.switchboard-with-plugs "switchboard-2.3.9-with-plugs"
pantheon.wingpanel "wingpanel-2.3.1" → pantheon.wingpanel-with-indicators "wingpanel-2.3.1-with-indicators"
patchelf "patchelf-0.9" → patchelfUnstable "patchelf-0.10"
pdftk-legacy "pdftk-2.02" → pdftk "pdftk-3.0.8"
perl "perl-5.30.2" → perldevel "perl-5.31.10"
perlPackages.perl "perl-5.30.2" → perldevel "perl-5.31.10"
pgf "pgf-2.00" → pgf_graphics "pgf-6.14.12"
phantomjs "phantomjs-1.9.8" → phantomjs2 "phantomjs-2.1.1"
ping "ping-0.6.0" → unixtools.ping "ping-1003.1-2008"
plex "plexmediaserver-" → plexRaw "plexmediaserver-1.19.2.2737-b69929dab"
postgresql "postgresql-11.7" → postgresql_12 "postgresql-12.2"
prison "prison-1.0" → libsForQt512.prison "prison-5.68.0"
procps "procps-3.3.16" → unixtools.procps "procps-1003.1-2008"
procps-ng "procps-3.3.16" → unixtools.procps "procps-1003.1-2008"
protobuf "protobuf-3.8.0" → protobuf3_12 "protobuf-3.12.0"
psqlodbc "psqlodbc-09.01.0200" → unixODBCDrivers.psql "psqlodbc-10.01.0000"
pyrex "python2.7-pyrex-0.9.5.1.1" → pyrex096 "python2.7-pyrex-0.9.6.4"
quota "quota-4.05" → unixtools.quota "quota-1003.1-2008"
qwt "qwt-5.2.3" → qwt6_qt4 "qwt-6.1.4"
racer "racer-1.1" → rustracer "racer-2.1.30"
ragel "ragel-6.10" → ragelDev "ragel-7.0.0.12"
ragelStable "ragel-6.10" → ragelDev "ragel-7.0.0.12"
readline "readline-6.3p08" → readline80 "readline-8.0p4"
rstudio "RStudio-1.2.5042" → rstudioWrapper "RStudio-1.2.5042-wrapper"
ruby "ruby-2.6.6" → ruby_2_7 "ruby-2.7.1"
rubyMinimal "ruby-2.6.6" → ruby_2_7 "ruby-2.7.1"
runtimeShellPackage "bash-4.4-p23" → bash_5 "bash-5.0-p16"
sane-backends "sane-backends-1.0.28" → saneBackendsGit "sane-backends-2017-12-01"
saneBackends "sane-backends-1.0.28" → saneBackendsGit "sane-backends-2017-12-01"
saxonb "saxonb-8.8" → saxonb_9_1 "saxonb-9.1.0.8"
sbcl "sbcl-2.0.0" → sbcl_2_0_2 "sbcl-2.0.2"
scribus "scribus-1.4.8" → scribusUnstable "scribus-1.5.5"
serfdom "serf-0.8.1" → serf "serf-1.3.9"
socat "socat-1.7.3.4" → socat2pre "socat-2.0.0-b9"
sourcehut.python "python3-3.7.7" → python39Full "python3-3.9.0a4"
spidermonkey "spidermonkey-38.8.0" → spidermonkey_68 "spidermonkey-68.7.0"
sqlite-replication "sqlite-3.27.2+replication3" → sqlite "sqlite-3.31.1"
sublime-merge-dev "sublime-merge-1115" → sublime-merge "sublime-merge-1116"
swig "swig-3.0.12" → swig4 "swig-4.0.1"
swigWithJava "swig-3.0.12" → swig4 "swig-4.0.1"
tesseract "tesseract-3.05.00" → tesseract_4 "tesseract-4.1.1"
tinc "tinc-1.0.36" → tinc_pre "tinc-1.1pre17"
tldr-hs "tldr-0.6.4" → tldr "tldr-1.3.0"
tre-command "tre-0.2.3" → tre "tre-0.8.0"
trustedGrub "trustedGRUB2-1.2.0" → trustedGrub-for-HP "trustedGRUB2-1.2.1"
ungoogled-chromium "chromium-81.0.4044.122" → chromium "chromium-83.0.4103.61"
unifiLTS "unifi-controller-5.6.42" → unifiStable "unifi-controller-5.12.66"
vdr "vdr-2.4.1" → vdrPlugins.skincurses "vdr-2.4.1-skincurses"
virtuoso "virtuoso-opensource-6.1.6" → virtuoso7 "virtuoso-opensource-7.2.4.2"
wine "wine-5.0" → wineStaging "wine-5.5-staging"
wineFull "wine-5.0" → wineStaging "wine-5.5-staging"
wineMinimal "wine-5.0" → wineStaging "wine-5.5-staging"
winePackages.base "wine-5.0" → wineStaging "wine-5.5-staging"
winePackages.full "wine-5.0" → wineStaging "wine-5.5-staging"
winePackages.minimal "wine-5.0" → wineStaging "wine-5.5-staging"
winePackages.stable "wine-5.0" → wineStaging "wine-5.5-staging"
winePackages.unstable "wine-5.5" → wineStaging "wine-5.5-staging"
wineStable "wine-5.0" → wineStaging "wine-5.5-staging"
wineUnstable "wine-5.5" → wineStaging "wine-5.5-staging"
wineWowPackages.base "wine-wow-5.0" → wineWowPackages.staging "wine-wow-5.5-staging"
wineWowPackages.full "wine-wow-5.0" → wineWowPackages.staging "wine-wow-5.5-staging"
wineWowPackages.minimal "wine-wow-5.0" → wineWowPackages.staging "wine-wow-5.5-staging"
wineWowPackages.stable "wine-wow-5.0" → wineWowPackages.staging "wine-wow-5.5-staging"
wineWowPackages.unstable "wine-wow-5.5" → wineWowPackages.staging "wine-wow-5.5-staging"
xcb-util-cursor-HEAD "xcb-util-cursor-0.1.1-3-unstable-2017-04-05" → xorg.xcbutilcursor "xcb-util-cursor-0.1.3"
xen "xen-4.8.5" → xen_4_10-slim "xen-4.10.4"
xen-light "xen-4.8.5" → xen_4_10-slim "xen-4.10.4"
xen-slim "xen-4.8.5" → xen_4_10-slim "xen-4.10.4"
xenPackages.xen-light "xen-4.8.5" → xen_4_10-slim "xen-4.10.4"
xenPackages.xen-slim "xen-4.8.5" → xen_4_10-slim "xen-4.10.4"
xenPackages.xen-vanilla "xen-4.8.5" → xen_4_10-slim "xen-4.10.4"
xfce.gtksourceview "gtksourceview-3.24.11" → gtksourceview4 "gtksourceview-4.6.0"

@prusnak
Copy link
Member

prusnak commented Jul 20, 2020

opencv: 2.x -> 4.0.1

updated via e31b4c3

Here are several that I’ve noticed:

  • electron: 4 → 8

fixed in #89758

  • protobuf: 3.8 → 3.12

pending in #91446

@deliciouslytyped
Copy link
Contributor

deliciouslytyped commented Jul 20, 2020

I just ran into this. Upstream is at 8.0 and default readline is at 6.3 .
@andersk your paste helped me find this issue.

@stale
Copy link

stale bot commented Jun 18, 2021

I marked this as stale due to inactivity. → More info

@stale stale bot added the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jun 18, 2021
@liff liff mentioned this issue Jun 20, 2021
11 tasks
@liff
Copy link
Contributor

liff commented Jun 20, 2021

Perhaps this deserves to live on?

@stale stale bot removed the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jun 20, 2021
@liff
Copy link
Contributor

liff commented Jun 20, 2021

boost: 1.6.7 -> 1.7.0

Pending in #120259.

@liff
Copy link
Contributor

liff commented Jun 23, 2021

buildkite-agent: 2 -> 3

Done in #77950.

@liff
Copy link
Contributor

liff commented Jun 23, 2021

spidermonkey: 31 -> 52

Obsolete, see #100089.

zabbix: 1.8 -> 3.4

Default is 5.0 already.

icu: 59 -> 63 (64?)

Default is 6.9.

@stale
Copy link

stale bot commented Jan 9, 2022

I marked this as stale due to inactivity. → More info

@stale stale bot added the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jan 9, 2022
@thefloweringash
Copy link
Member

thefloweringash commented Mar 30, 2022

Not stale. I've run into problems with readline6 on aarch64-darwin that are resolved by using readline81: tig crashes on search, and the line editor and pager in psql from postgres_13 behave poorly.

@stale stale bot removed the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Mar 30, 2022
@stale stale bot added the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Oct 1, 2022
@Artturin Artturin modified the milestones: 21.05, 23.05 Dec 31, 2022
@stale stale bot removed 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md labels Dec 31, 2022
@RaitoBezarius RaitoBezarius modified the milestones: 23.05, 23.11 May 31, 2023
@luzpaz
Copy link
Contributor

luzpaz commented Sep 23, 2023

zabbix: 1.8 -> 3.4

Should zabbix be removed from the OP ?
nixpkgs stable 23.05 packagenixpkgs unstable package

Latest stable is https://github.com/zabbix/zabbix/releases/tag/6.4.6

@samueldr samueldr added the 5. scope: tracking Long-lived issue tracking long-term fixes or multiple sub-problems label Apr 23, 2024
@jtojnar jtojnar moved this to To do in Picking up garbage Jun 27, 2024
@emilazy
Copy link
Member

emilazy commented Jul 29, 2024

A lot of the bullet points in the original post have already been completed or are themselves outdated; does anyone want to update this? If not we should probably just close it and maybe split out issues for the ones that are still relevant?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
5. scope: tracking Long-lived issue tracking long-term fixes or multiple sub-problems
Projects
Status: To do
Development

No branches or pull requests