about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEli <88557639+lishaduck@users.noreply.github.com>2024-06-03 12:54:41 -0500
committerEli <88557639+lishaduck@users.noreply.github.com>2024-06-03 15:57:29 -0500
commitc8052a3143bddc7917c28598406fc169fad4e4e7 (patch)
treee06f0eb0604f9b54fd868c9c4821a36b6f25b271
parent83332cce8f5ee4d3c7bd3edf0cc3e972c77070cd (diff)
oils-for-unix: reenable binary stripping
It seems that pkg.oils-for-unix was just copied from pkg.oil,
so it didn't reenable stripping the binary.
As the comment says, the old oil.ovm file had an appended zip file.
The new C++ interpreter doesn't, so this should be safe.
-rw-r--r--pkgs/by-name/oi/oils-for-unix/package.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/by-name/oi/oils-for-unix/package.nix b/pkgs/by-name/oi/oils-for-unix/package.nix
index f477d66d8a07c..316ba4a15030f 100644
--- a/pkgs/by-name/oi/oils-for-unix/package.nix
+++ b/pkgs/by-name/oi/oils-for-unix/package.nix
@@ -51,9 +51,6 @@ stdenv.mkDerivation rec {
     "--readline=${readline-all}"
   ];
 
-  # Stripping breaks the bundles by removing the zip file from the end.
-  dontStrip = true;
-
   meta = {
     description = "A Unix shell with JSON-compatible structured data. It's our upgrade path from bash to a better language and runtime.";
     homepage = "https://www.oilshell.org/";