A lot of misc fixes to foundation packages to better support cross compiling - Reduce number of gcc stages - Fix cross compile hooks for gcc, no overrides necessary in stage3 anymore - Add hooks to zlib - Fix compiliation for `i686-linux.i686-linux.i686-linux` Depends on #20 Reviewed-on: #23 Co-authored-by: Victor Fuentes <vlinkz@snowflakeos.org> Co-committed-by: Victor Fuentes <vlinkz@snowflakeos.org> |
||
|---|---|---|
| .. | ||
| npins | ||
| src | ||
| default.nix | ||
| flake.lock | ||
| flake.nix | ||
| LICENSE | ||
| README.md | ||
Aux Tidepool
Aux Tidepool is an initial package set built on top of Aux Foundation. Packages are created and managed using Aux Lib's module system to allow for highly dynamic and extensible configuration.
Usage
Packages can be imported both with and without Nix Flakes. To import them using Nix Flakes, add this repository as an input.
inputs.tidepool.url = "https://git.auxolotl.org/auxolotl/labs/archive/main.tar.gz?dir=tidepool";
To import this library without using Nix Flakes, you will need to use fetchTarball and
import the library entrypoint.
let
labs = builtins.fetchTarball {
url = "https://git.auxolotl.org/auxolotl/labs/archive/main.tar.gz";
sha256 = "<sha256>";
};
tidepool = import "${labs}/tidepool" {};
in
# ...