Commit the progress made (so far) on fixing the zims downloader

This commit is contained in:
Greg Hellings
2025-10-16 10:46:02 -05:00
parent 6744f6ac34
commit 0b6f269d35
3 changed files with 12 additions and 66 deletions
+2 -1
View File
@@ -17,11 +17,12 @@ let
inherit (val) hash;
url = "https://download.kiwix.org/zim/${type}/${val.name}.torrent";
backend = "transmission";
postUnpack = "ls -lR";
postUnpack = "mkdir -p $downloadedDirectory/tmp; mv $downloadedDirectory/*.zim $downloadedDirectory/tmp";
}
);
phases = [ "installPhase" ];
installPhase = ''
set -x
ls -lR ${finalAttrs.src}
cp ${finalAttrs.src} $out
'';