diff options
| author | John Bargman | 2026-04-15 08:23:09 +0000 |
|---|---|---|
| committer | John Bargman | 2026-04-15 08:23:09 +0000 |
| commit | db6b79edbfca3ab7049af2492acd567b099559f5 (patch) | |
| tree | f54df4a8af70b057032e5af882bd6d1e6be87bf2 /docs/archive/organized/cookbook/pinning-microsoft-github-inputs-in-nix | |
| parent | 4f877207787edd592687f338772d95c9ec2c7038 (diff) | |
| download | nixtaml-website-main.tar nixtaml-website-main.tar.gz nixtaml-website-main.tar.bz2 nixtaml-website-main.tar.lz nixtaml-website-main.tar.xz nixtaml-website-main.tar.zst nixtaml-website-main.zip | |
agentic ai; is so; fucking cool; omgmain
Diffstat (limited to 'docs/archive/organized/cookbook/pinning-microsoft-github-inputs-in-nix')
| -rw-r--r-- | docs/archive/organized/cookbook/pinning-microsoft-github-inputs-in-nix/pinning-microsoft-github-inputs-in-nix.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/archive/organized/cookbook/pinning-microsoft-github-inputs-in-nix/pinning-microsoft-github-inputs-in-nix.md b/docs/archive/organized/cookbook/pinning-microsoft-github-inputs-in-nix/pinning-microsoft-github-inputs-in-nix.md new file mode 100644 index 0000000..ea01715 --- /dev/null +++ b/docs/archive/organized/cookbook/pinning-microsoft-github-inputs-in-nix/pinning-microsoft-github-inputs-in-nix.md @@ -0,0 +1,25 @@ +# Pinning Microsoft GitHub Inputs | Nixtamal + +âââ»+â» â±ââ³âââââ³ââââ» + +ââââââââ¹ââ¹â£â«ââââ£â«â + +â¹âââ¹â± â¹ â¹ â¹â¹â¹ â¹â¹â¹ââ Home Install Manpage Changelog Roadmap Cookbook Real-world showcase Community FAQs Funding Pinning Microsoft GitHub Inputs GitHub is a U.S. -based closed-source, proprietary Git forge & social media platform owned by Microsoft. + +There is a gratis tier for repositories ( terms apply ). + +When you write an input of this kind, you will substitute the owner & project slugs. How to pin a Micosoft GitHub repository with Nix + Nixtamal Letâs show the way using the Movim repository. + +When you do this, you will substitute the owner & project slugs. + +In most cases, you will want to prefer fetching the archive (Microsoft GitHub supports gzip) over the Git input kind. git ls-remote is preferred by us for being more generic & anecdotally having less issues with throttling. Latest revision // manifest.kdl inputs { movim { archive { url "https://github.com/movim/movim/archive/{{fresh-value}}.tar.gz" } } fresh-cmd { $ git ls-remote --heads "https://github.com/movim/movim.git" | cut -f1 } } Latest release tag // manifest.kdl inputs { movim { archive { url "https://github.com/movim/movim/archive/{{fresh-value}}.tar.gz" } } fresh-cmd { $ git ls-remote --tags --sort= v:refname "https://github.com/movim/movim.git" | grep -E "'refs/tags/v([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. |
