mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 22:04:19 +08:00
Add recipes
This commit is contained in:
parent
1871dd1fc5
commit
68d9112899
@ -1,4 +1,4 @@
|
||||
#TODO Weird error with libssh2-sys crate
|
||||
#TODO Weird error with libssh2-sys crate (after a patch on the ring crate)
|
||||
[source]
|
||||
tar = "https://github.com/rustsec/rustsec/archive/refs/tags/cargo-audit/v0.18.3.tar.gz"
|
||||
[build]
|
||||
|
||||
14
recipes/wip/guile/recipe.toml
Normal file
14
recipes/wip/guile/recipe.toml
Normal file
@ -0,0 +1,14 @@
|
||||
#TODO make dependencies work
|
||||
[source]
|
||||
tar = "https://ftp.gnu.org/gnu/guile/guile-3.0.9.tar.xz"
|
||||
[build]
|
||||
template = "configure"
|
||||
dependencies = [
|
||||
"libgmp",
|
||||
"libiconv",
|
||||
"libunistring",
|
||||
"libgc",
|
||||
"readline",
|
||||
"libffi",
|
||||
"libintl",
|
||||
]
|
||||
10
recipes/wip/guix/recipe.toml
Normal file
10
recipes/wip/guix/recipe.toml
Normal file
@ -0,0 +1,10 @@
|
||||
#TODO fix libgcrypt
|
||||
#TODO maybe missing dependencies, see https://guix.gnu.org/manual/en/html_node/Requirements.html
|
||||
[source]
|
||||
tar = "https://ftpmirror.gnu.org/gnu/guix/guix-1.4.0.tar.gz"
|
||||
[build]
|
||||
template = "configure"
|
||||
dependencies = [
|
||||
"libgcrypt",
|
||||
"sqlite3",
|
||||
]
|
||||
5
recipes/wip/libeditline/recipe.toml
Normal file
5
recipes/wip/libeditline/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO Not compiled or tested
|
||||
[source]
|
||||
tar = "https://ftp.troglobit.com/editline/editline-1.17.1.tar.xz"
|
||||
[build]
|
||||
template = "configure"
|
||||
22
recipes/wip/nix/recipe.toml
Normal file
22
recipes/wip/nix/recipe.toml
Normal file
@ -0,0 +1,22 @@
|
||||
#TODO make dependencies work
|
||||
[source]
|
||||
tar = "https://github.com/NixOS/nix/archive/refs/tags/2.19.2.tar.gz"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"libbrotili",
|
||||
"openssl1",
|
||||
"curl",
|
||||
"sqlite3",
|
||||
"libeditline",
|
||||
"boost",
|
||||
"libsodium",
|
||||
"libcpuid",
|
||||
]
|
||||
script = """
|
||||
autoreconf -vfi
|
||||
COOKBOOK_CONFIGURE_FLAGS+=(
|
||||
--disable-tests
|
||||
)
|
||||
cookbook_configure
|
||||
"""
|
||||
Loading…
Reference in New Issue
Block a user