From 7cf0ef047fd15d4c3975474d044860179d91aae4 Mon Sep 17 00:00:00 2001 From: Rakshit Gondwal <98955085+rakshitgondwal@users.noreply.github.com> Date: Sun, 14 Jul 2024 00:38:00 +0530 Subject: [PATCH] fix: devShell generation for baseimgs (#85) Signed-off-by: Rakshit Gondwal --- pkg/nix/template/templates.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/nix/template/templates.go b/pkg/nix/template/templates.go index 9f9541ca..326abfe1 100644 --- a/pkg/nix/template/templates.go +++ b/pkg/nix/template/templates.go @@ -122,7 +122,7 @@ const ( {{ if eq .Language "JsNpm"}} inherit buildNodeModules; {{end}} }; }); - + {{end}} devShells = forEachSupportedSystem ({ pkgs, {{if eq .Language "GoModule"}} buildGoApplication, {{end}} {{if eq .Language "PythonPoetry"}} mkPoetryApplication, {{end}} @@ -137,7 +137,7 @@ const ( ]; }; }); - {{end}} + runtimeEnvs = forEachSupportedSystem ({ pkgs, {{if eq .Language "GoModule"}} buildGoApplication, {{end}} {{if eq .Language "PythonPoetry"}} mkPoetryApplication, {{end}}