aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-07-10 17:48:32 +0900
committerOphestra <cat@gensokyo.uk>2026-07-10 17:48:32 +0900
commit89db730bb974989b04783790c8dba5ae9ccbc3f0 (patch)
tree1490f558582eef3d93d49eedcfc8d488dff00ab5
parent5161fc24ec425a8e3c28158a431383e48353d143 (diff)
internal/rosa/package/ncurses: enable deterministic archives
This is not done by default in upstream build system. Signed-off-by: Ophestra <cat@gensokyo.uk>
-rw-r--r--internal/rosa/package/ncurses.az7
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/rosa/package/ncurses.az b/internal/rosa/package/ncurses.az
index 319ed96c..b6715a38 100644
--- a/internal/rosa/package/ncurses.az
+++ b/internal/rosa/package/ncurses.az
@@ -20,6 +20,13 @@ package ncurses {
// "tests" are actual demo programs, not a test suite.
skipCheck = true;
+
+ postInstall = `
+find /work/system/lib \
+ -type f \
+ -name '*.a' \
+ -exec objcopy --enable-deterministic-archives {} \;
+`;
};
inputs = [ pkg-config ];