unvendor
This commit is contained in:
Dawid Sobczak 2025-04-18 12:41:04 +01:00
parent 9a4b261179
commit 404aa8ebbb
139 changed files with 8091 additions and 1178 deletions

15
06/flake.nix Normal file
View file

@ -0,0 +1,15 @@
{
description = "bootstrap-from-tcc";
outputs = { self }:
let
allPkgs = (import ./default.nix);
in
{
packages.x86_64-linux = allPkgs;
# TODO: expose only the most usable outputs
# TODO: solve fetching: https://discourse.nixos.org/t/17105
hydraJobs = builtins.mapAttrs (_: drv: { x86_64-linux = drv; }) allPkgs;
};
}