Skip to content

Commit 75fd4a1

Browse files
committed
update flake-compatish
1 parent 2a8af36 commit 75fd4a1

3 files changed

Lines changed: 17 additions & 10 deletions

File tree

default.nix

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@ let
22
inputs =
33
(
44
let
5-
lockFile = builtins.readFile ./flake.lock;
6-
lockAttrs = builtins.fromJSON lockFile;
7-
fcLockInfo = lockAttrs.nodes.flake-compatish.locked;
8-
fcSrc = builtins.fetchTree fcLockInfo;
9-
flake-compatish = import fcSrc;
5+
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
6+
flake-compatish = import (builtins.fetchTree lock.nodes.flake-compatish.locked);
107
in
11-
flake-compatish ./.
8+
flake-compatish {
9+
source = ./.;
10+
overrides = {
11+
self = ./.;
12+
};
13+
}
1214
).inputs;
1315
in
1416
{

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kubenix/options.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ let
1515
fcSrc = builtins.fetchTree fcLockInfo;
1616
flake-compatish = import fcSrc;
1717
in
18-
flake-compatish ../.
18+
flake-compatish {
19+
source = ../.;
20+
overrides = {
21+
self = ../.;
22+
};
23+
}
1924
).inputs;
2025
in
2126
{

0 commit comments

Comments
 (0)