bscpkgs/garlic/pp/merge.nix
Rodrigo Arias Mallo 4beb069627 WIP: postprocessing pipeline
Now each run is executed in a independent folder
2020-11-03 19:09:59 +01:00

17 lines
230 B
Nix

{
stdenv
}:
experiments:
with stdenv.lib;
stdenv.mkDerivation {
name = "merge.json";
preferLocalBuild = true;
phases = [ "installPhase" ];
installPhase = ''
cat ${concatStringsSep " " experiments} >> $out
'';
}