NickelEval.jl

Julia FFI bindings for Nickel configuration language
Log | Files | Refs | README | LICENSE

commit 3e799d8962805cbe9c71ebc055453dec958d6cfb
parent 0133a50ffd040d3ad37dc8bb741881151d2df9af
Author: Erik Loualiche <[email protected]>
Date:   Fri,  6 Feb 2026 09:38:14 -0600

Add LouLouLibs registry installation instructions

Diffstat:
MREADME.md | 10++++++++++
Mdocs/src/index.md | 10++++++++++
Mdocs/src/man/quickstart.md | 10++++++++++
3 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -6,6 +6,16 @@ Evaluate Nickel code directly from Julia with native type conversion and export ## Installation +### From LouLouLibs Registry (Recommended) + +```julia +using Pkg +Pkg.Registry.add(url="https://github.com/LouLouLibs/loulouJL") +Pkg.add("NickelEval") +``` + +### From GitHub URL + ```julia using Pkg Pkg.add(url="https://github.com/LouLouLibs/NickelEval") diff --git a/docs/src/index.md b/docs/src/index.md @@ -12,6 +12,16 @@ Julia bindings for the [Nickel](https://nickel-lang.org/) configuration language ## Installation +### From LouLouLibs Registry (Recommended) + +```julia +using Pkg +Pkg.Registry.add(url="https://github.com/LouLouLibs/loulouJL") +Pkg.add("NickelEval") +``` + +### From GitHub URL + ```julia using Pkg Pkg.add(url="https://github.com/LouLouLibs/NickelEval") diff --git a/docs/src/man/quickstart.md b/docs/src/man/quickstart.md @@ -2,6 +2,16 @@ ## Installation +### From LouLouLibs Registry (Recommended) + +```julia +using Pkg +Pkg.Registry.add(url="https://github.com/LouLouLibs/loulouJL") +Pkg.add("NickelEval") +``` + +### From GitHub URL + ```julia using Pkg Pkg.add(url="https://github.com/LouLouLibs/NickelEval")