From db6b79edbfca3ab7049af2492acd567b099559f5 Mon Sep 17 00:00:00 2001 From: John Bargman Date: Wed, 15 Apr 2026 08:23:09 +0000 Subject: agentic ai; is so; fucking cool; omg --- .../pinning-codeberg-inputs-in-nix.md | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docs/archive/organized/cookbook/pinning-codeberg-inputs-in-nix/pinning-codeberg-inputs-in-nix.md (limited to 'docs/archive/organized/cookbook/pinning-codeberg-inputs-in-nix/pinning-codeberg-inputs-in-nix.md') diff --git a/docs/archive/organized/cookbook/pinning-codeberg-inputs-in-nix/pinning-codeberg-inputs-in-nix.md b/docs/archive/organized/cookbook/pinning-codeberg-inputs-in-nix/pinning-codeberg-inputs-in-nix.md new file mode 100644 index 0000000..1f79a1f --- /dev/null +++ b/docs/archive/organized/cookbook/pinning-codeberg-inputs-in-nix/pinning-codeberg-inputs-in-nix.md @@ -0,0 +1,23 @@ +# Pinning Codeberg Inputs | Nixtamal + +┏┓╻+╻ ╱┏┳┓┏┓┏┳┓┏┓╻ + +┃┃┃┃┗━┓╹┃╹┣┫┃┃┃┣┫┃ + +╹┗┛╹╱ ╹ ╹ ╹╹╹ ╹╹╹┗┛ Home Install Manpage Changelog Roadmap Cookbook Real-world showcase Community FAQs Funding Pinning Codeberg Inputs Codeberg is a Forgejo ( FOSS ) Git forge instance ran by a German non-profit. + +The instance offers gratis accounts ( terms apply ). How to pin a Codeberg repository with Nix + Nixtamal Let’s show the way using the Biboumi repository. + +When you write this, you will substitute the owner & project slugs. + +In most cases, you will want to prefer fetching the archive (Forgejo supports gzip) over the Git input kind. git ls-remote is preferred by us for being more generic. Latest revision // manifest.kdl inputs { soupault { archive { url "https://codeberg.org/poezio/biboumi/archive/{{fresh-value}}.tar.gz" } } fresh-cmd { $ git ls-remote --branches main "https://codeberg.org/poezio/biboumi.git" | cut -f1 } } Latest stable release tag // manifest.kdl inputs { soupault { archive { url "https://codeberg.org/poezio/biboumi/archive/{{fresh-value}}.tar.gz" } } fresh-cmd { $ git ls-remote --tags --sort= v:refname "https://codeberg.org/poezio/biboumi.git" | grep -E "'refs/tags/([0-9]+ \\ .)+[0-9]+$'" | tail -n1 | sed "'s|.*refs/tags/||'" } } Site made with Nix ( dep management), Nickel ( config ), Soupault ( SSG ), Docutils ( rST rendering), mandoc (manpage conversion), & sugilite256 (color scheme). © 2025–2026 toastal . + +© 2026 Nixtamal contributors. + +Some rights reserved. + +Except where otherwise noted, the content on this website is licensed under CC-BY-SA-4.0 . + +Citations must attribute the work’s writer/maker & include a hyperlink to this website (or rather the work itself). + +Yes, these rules/clauses apply to LLM s & AI assistants too. -- cgit v1.2.3