From c656c42c60be5d0a710f1671dbcfa32b34a8bf1f Mon Sep 17 00:00:00 2001 From: Ryan Mulligan <ryan@ryantm.com> Date: Wed, 14 Oct 2020 20:29:40 -0700 Subject: [PATCH] nixpkgs-update disable CVE feature It seems to be broken with connection timeout errors --- build01/nixpkgs-update.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build01/nixpkgs-update.nix b/build01/nixpkgs-update.nix index 6f68db1..965362c 100644 --- a/build01/nixpkgs-update.nix +++ b/build01/nixpkgs-update.nix @@ -59,13 +59,13 @@ in ${nixpkgs-update-bin} delete-done --delete grep -rl $XDG_CACHE_HOME/nixpkgs -e buildPython | grep default | \ ${nixpkgs-update-pypi-releases} --nixpkgs=/var/cache/nixpkgs-update/nixpkgs > /var/lib/nixpkgs-update/packages-to-update.txt - ${nixpkgs-update-bin} update-list --pr --cve --outpaths --nixpkgs-review || true + ${nixpkgs-update-bin} update-list --pr --outpaths --nixpkgs-review || true ${nixpkgs-update-bin} delete-done --delete ${nixpkgs-update-github-releases} > /var/lib/nixpkgs-update/packages-to-update.txt - ${nixpkgs-update-bin} update-list --pr --cve --outpaths --nixpkgs-review || true + ${nixpkgs-update-bin} update-list --pr --outpaths --nixpkgs-review || true ${nixpkgs-update-bin} delete-done --delete ${nixpkgs-update-bin} fetch-repology > /var/lib/nixpkgs-update/packages-to-update.txt - ${nixpkgs-update-bin} update-list --pr --cve --outpaths --nixpkgs-review + ${nixpkgs-update-bin} update-list --pr --outpaths --nixpkgs-review ''; };