Skip to content
This repository was archived by the owner on Jun 16, 2024. It is now read-only.

Commit a0c4709

Browse files
fix(packages/strace): disable optimizations
1 parent c17342c commit a0c4709

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

packages/strace/default.nix

+4-11
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
{
2-
host,
3-
self,
4-
strace,
5-
...
6-
}:
7-
with self.lib.derivations;
8-
c.optimizeAllExceptLto host (autotools.optimizeLto
9-
(strace.overrideAttrs (old: {
10-
patches = (old.patches or []) ++ [./colors.patch];
11-
})))
1+
{strace, ...}:
2+
strace.overrideAttrs (old: {
3+
patches = (old.patches or []) ++ [./colors.patch];
4+
})

0 commit comments

Comments
 (0)