From f015e5f71cc5a055a374e68bcfa52dd2a68e88c9 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Mon, 17 Jul 2023 10:52:28 +0200 Subject: [PATCH] Use builtin.fetchurl to see the progress --- bsc/intel-oneapi/2023.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsc/intel-oneapi/2023.nix b/bsc/intel-oneapi/2023.nix index eaa9cd0..f4bd902 100644 --- a/bsc/intel-oneapi/2023.nix +++ b/bsc/intel-oneapi/2023.nix @@ -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";