internal/rosa/package: migrate multiple libraries
Test / Create distribution (push) Successful in 1m5s
Test / Sandbox (push) Successful in 2m44s
Test / ShareFS (push) Successful in 3m45s
Test / Hakurei (push) Successful in 3m51s
Test / Sandbox (race detector) (push) Successful in 5m23s
Test / Hakurei (race detector) (push) Successful in 6m27s
Test / Flake checks (push) Successful in 1m20s

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
cat
2026-05-20 04:37:58 +09:00
parent 2e710328a4
commit 47f4e287fc
14 changed files with 266 additions and 334 deletions
+26
View File
@@ -0,0 +1,26 @@
package ncurses {
description = "a free software emulation of curses in System V Release 4.0 (SVr4)";
website = "https://invisible-island.net/ncurses";
anitya = 373226;
version* = "6.6";
source = remoteTar {
url = "https://ftpmirror.gnu.org/gnu/ncurses/ncurses-"+version+".tar.gz";
checksum = "XvWp4xi6hR_hH8XUoGY26L_pqBSDapJYulhzZqPuR0KNklqypqNc1yNXU-nOjf5w";
compress = gzip;
};
exec = make {
configure = {
"with-pkg-config";
"enable-pc-files";
"with-shared";
"with-cxx-shared";
};
// "tests" are actual demo programs, not a test suite.
skipCheck = true;
};
inputs = [ pkg-config ];
}