chore(buildClan): rename eval.nix to function-adapter.nix to make its shallows purpose more clear

This commit is contained in:
Johannes Kirschbauer
2025-04-01 14:33:55 +02:00
parent de9b42be2f
commit ffaf87b881
3 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@
... ...
}@attrs: }@attrs:
let let
eval = import ./eval.nix { eval = import ./function-adapter.nix {
inherit inherit
lib lib
nixpkgs nixpkgs

View File

@@ -6,7 +6,7 @@
... ...
}: }:
let let
evalClan = import ./eval.nix { evalClan = import ./function-adapter.nix {
inherit lib nixpkgs clan-core; inherit lib nixpkgs clan-core;
self = ./.; self = ./.;
}; };