about summary refs log tree commit diff
diff options
context:
space:
mode:
authorHraban Luyat <hraban@0brg.net>2024-02-25 12:23:58 -0500
committerHraban Luyat <hraban@0brg.net>2024-02-25 12:24:13 -0500
commit84e89be710698cf68c06ab97ce296e2f9eaf3e12 (patch)
tree97df3d503b834f5f7da06eeba3ceb78f673d98b8
parentf63ce824cd2f036216eb5f637dfef31e1a03ee89 (diff)
downloadnixlib-84e89be710698cf68c06ab97ce296e2f9eaf3e12.tar
nixlib-84e89be710698cf68c06ab97ce296e2f9eaf3e12.tar.gz
nixlib-84e89be710698cf68c06ab97ce296e2f9eaf3e12.tar.bz2
nixlib-84e89be710698cf68c06ab97ce296e2f9eaf3e12.tar.lz
nixlib-84e89be710698cf68c06ab97ce296e2f9eaf3e12.tar.xz
nixlib-84e89be710698cf68c06ab97ce296e2f9eaf3e12.tar.zst
nixlib-84e89be710698cf68c06ab97ce296e2f9eaf3e12.zip
sbcl: set source provenance on binary bootstrap
Fixes nixos/nixpkgs#282476
-rw-r--r--pkgs/development/compilers/sbcl/bootstrap.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/compilers/sbcl/bootstrap.nix b/pkgs/development/compilers/sbcl/bootstrap.nix
index e23557c5a62f..d796b24e1d7e 100644
--- a/pkgs/development/compilers/sbcl/bootstrap.nix
+++ b/pkgs/development/compilers/sbcl/bootstrap.nix
@@ -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 ];
 }