From cd12786be17a611976b44fbba3e245eca512535f Mon Sep 17 00:00:00 2001 From: Jake Hamilton Date: Wed, 12 Jun 2024 06:31:09 -0700 Subject: [PATCH] docs: update source urls --- foundation/README.md | 4 ++-- lib/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/foundation/README.md b/foundation/README.md index 9909866..d944d40 100644 --- a/foundation/README.md +++ b/foundation/README.md @@ -9,7 +9,7 @@ Packages can be imported both with and without Nix Flakes. To import them using add this repository as an input. ```nix -inputs.foundation.url = "github:auxolotl/labs?dir=foundation"; +inputs.foundation.url = "https://git.auxolotl.org/auxolotl/labs/archive/main.tar.gz?dir=foundation"; ``` To import this library without using Nix Flakes, you will need to use `fetchTarball` and @@ -18,7 +18,7 @@ import the library entrypoint. ```nix let labs = builtins.fetchTarball { - url = "https://github.com/auxolotl/labs/archive/main.tar.gz"; + url = "https://git.auxolotl.org/auxolotl/labs/archive/main.tar.gz"; sha256 = ""; }; foundation = import "${labs}/foundation" { diff --git a/lib/README.md b/lib/README.md index b14e1ab..f8b92fc 100644 --- a/lib/README.md +++ b/lib/README.md @@ -11,7 +11,7 @@ The library can be imported both with and without Nix Flakes. To import the libr add this repository as an input. ```nix -inputs.lib.url = "github:auxolotl/labs?dir=lib"; +inputs.lib.url = "https://git.auxolotl.org/auxolotl/labs/archive/main.tar.gz?dir=lib"; ``` To import the library without using Nix Flakes, you will need to use `fetchTarball` and import the @@ -20,7 +20,7 @@ library entrypoint. ```nix let labs = builtins.fetchTarball { - url = "https://github.com/auxolotl/labs/archive/main.tar.gz"; + url = "https://git.auxolotl.org/auxolotl/labs/archive/main.tar.gz"; sha256 = ""; }; lib = import "${labs}/lib";