From c37c8e4e159c1882dff2a56be26dcb8da5b125ad Mon Sep 17 00:00:00 2001 From: Xe Date: Thu, 8 Dec 2022 23:50:40 -0500 Subject: [PATCH] nix/internal: work with v2 lock files Signed-off-by: Xe --- lock.json | 5 ++++- nix/internal.nix | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lock.json b/lock.json index 1865d4d..4d853b5 100644 --- a/lock.json +++ b/lock.json @@ -1,3 +1,6 @@ { - "https://deno.land/std@0.118.0/fmt/colors.ts": "8368ddf2d48dfe413ffd04cdbb7ae6a1009cf0dccc9c7ff1d76259d9c61a0621" + "version": "2", + "remote": { + "https://deno.land/std@0.118.0/fmt/colors.ts": "8368ddf2d48dfe413ffd04cdbb7ae6a1009cf0dccc9c7ff1d76259d9c61a0621" + } } diff --git a/nix/internal.nix b/nix/internal.nix index 67a30a0..8f6cbc9 100644 --- a/nix/internal.nix +++ b/nix/internal.nix @@ -43,7 +43,7 @@ in { } ] ) - (importJSON lockfile) + (importJSON lockfile).remote )) ); }