2024-10-12 10:35:54 -05:00
|
|
|
{
|
|
|
|
|
callPackage,
|
|
|
|
|
fetchtorrent,
|
|
|
|
|
lib,
|
|
|
|
|
stdenv,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
let
|
|
|
|
|
inherit (lib.attrsets) mapAttrs mapAttrsRecursiveCond;
|
2024-10-12 17:32:32 -05:00
|
|
|
# Converts the inputs from the file into a fetchtorrent command
|
2024-10-12 10:35:54 -05:00
|
|
|
zim =
|
|
|
|
|
type: val:
|
2024-10-12 17:32:32 -05:00
|
|
|
(fetchtorrent {
|
|
|
|
|
inherit (val) hash name;
|
2024-10-12 10:35:54 -05:00
|
|
|
url = "https://download.kiwix.org/zim/${type}/${val.name}.torrent";
|
2024-10-12 17:32:32 -05:00
|
|
|
});
|
|
|
|
|
rawZims = builtins.fromJSON (builtins.readFile ./zim/blobs.json);
|
|
|
|
|
# Uses the function above to convert the JSON into a structure of fetchtorrent derivations
|
|
|
|
|
zims = mapAttrs (_: types: (mapAttrs (type: info: zim type info) types)) (rawZims);
|
|
|
|
|
# Turns the fetchtorrent derivations into a list of strings, copying the results into a final output
|
2024-10-12 10:35:54 -05:00
|
|
|
copies = builtins.concatStringsSep "\n" (
|
|
|
|
|
lib.attrsets.collect builtins.isString (
|
|
|
|
|
mapAttrsRecursiveCond (as: !(lib.attrsets.isDerivation as)) # don't recurse derivations
|
2024-10-12 17:32:32 -05:00
|
|
|
(_: v: "ln -s ${v} $out/") # copy derivation to destination
|
2024-10-12 10:35:54 -05:00
|
|
|
zims
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
in
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
name = "zims";
|
|
|
|
|
version = "2024-10";
|
|
|
|
|
|
|
|
|
|
passthru = {
|
2024-10-12 17:32:32 -05:00
|
|
|
inherit zims rawZims;
|
2024-10-12 10:35:54 -05:00
|
|
|
updater = (callPackage ./zim/updater.nix { });
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
|
|
|
|
|
|
# Collect all the zim files into a single folder derivation
|
|
|
|
|
installPhase = ''
|
|
|
|
|
mkdir -p $out
|
2024-10-12 17:32:32 -05:00
|
|
|
${copies}
|
2024-10-12 10:35:54 -05:00
|
|
|
'';
|
|
|
|
|
}
|