WIP: postprocessing pipeline

Now each run is executed in a independent folder
This commit is contained in:
2020-10-21 18:18:43 +02:00
parent 1321b6a888
commit 4beb069627
20 changed files with 232 additions and 279 deletions

16
garlic/pp/merge.nix Normal file
View File

@@ -0,0 +1,16 @@
{
stdenv
}:
experiments:
with stdenv.lib;
stdenv.mkDerivation {
name = "merge.json";
preferLocalBuild = true;
phases = [ "installPhase" ];
installPhase = ''
cat ${concatStringsSep " " experiments} >> $out
'';
}