about summary refs log tree commit diff
diff options
context:
space:
mode:
authorHraban Luyat <hraban@0brg.net>2023-04-10 15:03:12 -0400
committerHraban Luyat <hraban@0brg.net>2023-04-10 15:09:34 -0400
commit80673bd4119b4f56313a2bcddc727fe8fa0fd82d (patch)
tree7c0c818c94db1e0c571ef591896a4932a3a1136d
parent7493ac348a23ca27386acb1800da42abdac078ce (diff)
clpm: do fixup, just don’t strip
Less invasive change to the default build process, with the same result.
-rw-r--r--pkgs/development/tools/clpm/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/clpm/default.nix b/pkgs/development/tools/clpm/default.nix
index 4fb1bbf851e93..06623538a3bc1 100644
--- a/pkgs/development/tools/clpm/default.nix
+++ b/pkgs/development/tools/clpm/default.nix
@@ -54,8 +54,8 @@ stdenv.mkDerivation rec {
     runHook postInstall
   '';
 
-  # fixupPhase results in fatal error in SBCL, `Can't find sbcl.core`
-  dontFixup = true;
+  # Stripping binaries results in fatal error in SBCL, `Can't find sbcl.core`
+  dontStrip = true;
 
   meta = with lib; {
     description = "Common Lisp Package Manager";