mirror of
https://github.com/rosenpass/rosenpass.git
synced 2026-02-28 06:23:08 -08:00
33 lines
910 B
Nix
33 lines
910 B
Nix
outer_ctx: outer_ctx.scoped rec {
|
|
inherit (builtins) trace;
|
|
|
|
ctx = outer_ctx // { inherit config; };
|
|
|
|
inherit (ctx) scoped;
|
|
|
|
inherit (ctx.flake.inputs) nixpkgs flake-utils;
|
|
inherit (nixpkgs.lib) genAttrs zipAttrsWith;
|
|
inherit (nixpkgs.lib.debug) traceVal;
|
|
inherit (flake-utils.lib) allSystems eachSystem;
|
|
|
|
result = {
|
|
devShells = eachSupportedSystem (system: (setupSystem system).devShells);
|
|
packages = eachSupportedSystem (system: (setupSystem system).packages);
|
|
apps = eachSupportedSystem (system: (setupSystem system).apps);
|
|
};
|
|
|
|
setupSystem = (system_name: scoped rec {
|
|
result = (import ./system.nix) (ctx // {
|
|
system.name = system_name;
|
|
system.pkgs = nixpkgs.legacyPackages.${system_name};
|
|
});
|
|
});
|
|
|
|
config = {
|
|
supportedSystems = allSystems;
|
|
poetry.projectDir = ctx.flake.self;
|
|
};
|
|
|
|
eachSupportedSystem = genAttrs config.supportedSystems;
|
|
}
|