forked from rarias/bscpkgs
WIP: postprocessing pipeline
Now each run is executed in a independent folder
This commit is contained in:
16
garlic/pp/merge.nix
Normal file
16
garlic/pp/merge.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
stdenv
|
||||
}:
|
||||
|
||||
experiments:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "merge.json";
|
||||
preferLocalBuild = true;
|
||||
phases = [ "installPhase" ];
|
||||
installPhase = ''
|
||||
cat ${concatStringsSep " " experiments} >> $out
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user