Merge pull request #291393 from hraban/sbcl/source-provenance

sbcl: set source provenance on binary bootstrap
This commit is contained in:
7c6f434c 2024-02-25 19:24:13 +00:00 committed by GitHub
commit a9a0c2c4ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,4 +26,6 @@ stdenv.mkDerivation rec {
postFixup = lib.optionalString (!stdenv.isAarch32 && stdenv.isLinux) ''
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) $out/share/sbcl/sbcl
'';
meta.sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
}