dependencies

This commit is contained in:
2026-02-14 12:02:54 +01:00
parent eba402dc31
commit 03d20665b4
7 changed files with 86 additions and 30 deletions

11
packages/libncurses.shrap Normal file
View File

@@ -0,0 +1,11 @@
(package
(name "ncurses")
(version "6.6")
(homepage "https://invisible-island.net/ncurses/")
(src (tar
(url "https://invisible-mirror.net/archives/ncurses/ncurses-6.6.tar.gz")
(dir "ncurses-6.6")
(blake3 "")))
(build
(configure_make
(configure_flags "--disable-widec --without-tests --without-progs --without-manpages"))))

11
packages/vim.shrap Normal file
View File

@@ -0,0 +1,11 @@
(package
(name "vim")
(version "9.1.2148")
(homepage "https://www.vim.org/")
(dependencies "libncurses")
(src (tar
(url "https://github.com/vim/vim/archive/refs/tags/v9.1.2148.tar.gz")
(dir "vim-9.1.2148")
(blake3 "")))
(build
(configure_make)))

10
packages/zlib.shrap Normal file
View File

@@ -0,0 +1,10 @@
(package
(name "zlib")
(version "1.3.1")
(homepage "https://zlib.net/")
(src (tar
(url "https://zlib.net/zlib-1.3.1.tar.gz")
(dir "zlib-1.3.1")
(blake3 "207c3b0862cb4e3686f8405f76a98c38dbad9c94bcf4be4b9efca0716aba51ec")))
(build
(configure_make)))