From 3fbd0e79aaf520de5665cec00e41427abfec12eb Mon Sep 17 00:00:00 2001 From: Brian W Bush Date: Mon, 25 Sep 2023 11:11:41 -0600 Subject: [PATCH] PLT-7634 Added skopeo and docker to development shell. --- nix/shell.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nix/shell.nix b/nix/shell.nix index 734cb92..4c542a2 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -6,6 +6,8 @@ let nodejs = pkgs.nodejs-18_x; + skopeo = inputs'.n2c.packages.skopeo-nix2container; + docker = pkgs.docker; in @@ -15,6 +17,8 @@ in welcomeMessage = "Marlowe withdraw dapp"; packages = [ nodejs + skopeo + docker ]; # scripts = { }; # env = { };