aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-10-25 16:48:31 +0200
committerGitHub <noreply@github.com>2022-10-25 16:48:31 +0200
commitda2c61637bbf5d22fc2aa3c8d24005f364d28fa2 (patch)
tree31408951a0d3464b79294d811513b2ba5be99ab4 /src/libexpr
parent334fa81d0828f79d832a029ba16e0c807ec15554 (diff)
Use _type
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
Diffstat (limited to 'src/libexpr')
-rw-r--r--src/libexpr/flake/call-flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/flake/call-flake.nix b/src/libexpr/flake/call-flake.nix
index 87d7a126b..8061db3df 100644
--- a/src/libexpr/flake/call-flake.nix
+++ b/src/libexpr/flake/call-flake.nix
@@ -43,7 +43,7 @@ let
outputs = flake.outputs (inputs // { self = result; });
- result = outputs // sourceInfo // { inherit inputs; inherit outputs; inherit sourceInfo; type = "flake"; };
+ result = outputs // sourceInfo // { inherit inputs; inherit outputs; inherit sourceInfo; _type = "flake"; };
in
if node.flake or true then
assert builtins.isFunction flake.outputs;