Merge pull request #92969 from lopsided98/uboot-hydra-build-products

uboot: add hydra-build-products
This commit is contained in:
Samuel Dionne-Riel 2021-06-28 15:13:37 -04:00 committed by GitHub
commit 03344a15e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,6 +88,11 @@ let
mkdir -p ${installDir}
cp ${lib.concatStringsSep " " filesToInstall} ${installDir}
mkdir -p "$out/nix-support"
${lib.concatMapStrings (file: ''
echo "file binary-dist ${installDir}/${builtins.baseNameOf file}" >> "$out/nix-support/hydra-build-products"
'') filesToInstall}
runHook postInstall
'';