Skip to content

Commit 0c84b2a

Browse files
pass lib to overlays
1 parent cc27fc2 commit 0c84b2a

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

andromeda-lib/flake/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ in rec {
1212
without-self = flake-inputs: builtins.removeAttrs flake-inputs ["self"];
1313

1414
# @TODO: Find if this is needed or not
15-
without-andromeda-inputs = andromeda-lib.fp.compose without-src;
15+
without-andromeda-inputs = without-src;
1616
# without-andromeda-inputs = andromeda-lib.fp.compose without-self without-src;
1717

1818
## Remove Andromeda-specific attributes so the rest can be safely passed to flake-utils-plus.

andromeda-lib/internal/default.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
inherit (core-inputs.nixpkgs.lib) fix filterAttrs callPackageWith;
99

1010
core-inputs-libs = andromeda-lib.flake.get-libs (andromeda-lib.flake.without-self core-inputs);
11-
user-inputs-libs = andromeda-lib.flake.get-libs (andromeda-lib.flake.without-self user-inputs);
11+
user-inputs-libs = andromeda-lib.flake.get-libs user-inputs;
12+
# user-inputs-libs = andromeda-lib.flake.get-libs (andromeda-lib.flake.without-self user-inputs);
1213

1314
andromeda-top-level-lib = filterAttrs (_name: value: !builtins.isAttrs value) andromeda-lib;
1415

andromeda-lib/overlay/default.nix

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ in {
2222
// {
2323
inherit channels;
2424
inputs = user-inputs;
25+
lib = andromeda-lib.internal.system-lib;
2526
});
2627

2728
user-packages-overlay = final: prev: let
@@ -78,6 +79,7 @@ in {
7879
// {
7980
inherit channels;
8081
inputs = user-inputs;
82+
lib = andromeda-lib.internal.system-lib;
8183
});
8284
packages = user-packages-overlay final prev;
8385
prev-with-packages =

0 commit comments

Comments
 (0)