blob: 8c1acaa44c1953b20ed8b9a185c4b51c3d27c6a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ lib, runCommand, fetchDepotFile }:
name: caches: ps:
with lib;
let
emitStep = { FileName, Flags, Chunks, ... }@file:
if bitAnd Flags 64 != 0 || Chunks == [] then ''
mkdir -p $out/'${FileName}'
'' else let drv = fetchDepotFile file; in ''
mkdir -p $out/'${drv.passthru.dirname}'
ln -s '${drv}' $out/'${FileName}'
'';
emitManifest = cache: with cache.passthru; let
json = "${cache}/.DepotDownloader/${toString depot}_${manifest}.json";
mkStep = file: emitStep (file // { inherit cache; });
in concatMapStrings mkStep (importJSON json).Files;
in runCommand name {} ''
${concatMapStringsSep "\n" emitManifest caches}
${ps}
''
|