Use builtin.fetchurl to see the progress

This commit is contained in:
Rodrigo Arias 2023-07-17 10:52:28 +02:00
parent 534c5dd261
commit f015e5f71c

View File

@ -93,7 +93,7 @@ let
let
urls = builtins.map (x: getUrl aptPackages x) names;
sums = builtins.map (x: getSum aptPackages x) names;
getsrc = url: sha256: fetchurl { inherit url sha256; };
getsrc = url: sha256: builtins.fetchurl { inherit url sha256; };
debs = lib.zipListsWith getsrc urls sums;
in
uncompressDebs debs "${name}-source";