File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ in rec {
12
12
without-self = flake-inputs : builtins . removeAttrs flake-inputs [ "self" ] ;
13
13
14
14
# @TODO: Find if this is needed or not
15
- without-andromeda-inputs = andromeda-lib . fp . compose without-src ;
15
+ without-andromeda-inputs = without-src ;
16
16
# without-andromeda-inputs = andromeda-lib.fp.compose without-self without-src;
17
17
18
18
## Remove Andromeda-specific attributes so the rest can be safely passed to flake-utils-plus.
Original file line number Diff line number Diff line change 8
8
inherit ( core-inputs . nixpkgs . lib ) fix filterAttrs callPackageWith ;
9
9
10
10
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);
12
13
13
14
andromeda-top-level-lib = filterAttrs ( _name : value : ! builtins . isAttrs value ) andromeda-lib ;
14
15
Original file line number Diff line number Diff line change 22
22
// {
23
23
inherit channels ;
24
24
inputs = user-inputs ;
25
+ lib = andromeda-lib . internal . system-lib ;
25
26
} ) ;
26
27
27
28
user-packages-overlay = final : prev : let
78
79
// {
79
80
inherit channels ;
80
81
inputs = user-inputs ;
82
+ lib = andromeda-lib . internal . system-lib ;
81
83
} ) ;
82
84
packages = user-packages-overlay final prev ;
83
85
prev-with-packages =
You can’t perform that action at this time.
0 commit comments