From 86d25f50ee4e8d5447365399f74fc16bbc2797cd Mon Sep 17 00:00:00 2001 From: Rakshit Gondwal Date: Tue, 4 Jun 2024 12:50:34 +0530 Subject: [PATCH] fix: rust bug for oci Signed-off-by: Rakshit Gondwal --- pkg/nix/template/templates.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkg/nix/template/templates.go b/pkg/nix/template/templates.go index dc013ccb..5fe817f4 100644 --- a/pkg/nix/template/templates.go +++ b/pkg/nix/template/templates.go @@ -124,7 +124,6 @@ const ( devShells = forEachSupportedSystem ({ pkgs, {{if eq .Language "GoModule"}} buildGoApplication, {{end}} {{if eq .Language "PythonPoetry"}} mkPoetryApplication, {{end}} - {{if eq .Language "RustCargo"}} rustPkgs, {{end}} {{ if eq .Language "JsNpm"}} buildNodeModules, {{end}} {{ range .NixPackageRevisions }} nixpkgs-{{ .}}-pkgs, {{ end }} ... }: { @@ -141,7 +140,6 @@ const ( {{if eq .Language "GoModule"}} buildGoApplication, {{end}} {{if eq .Language "PythonPoetry"}} mkPoetryApplication, {{end}} {{ if eq .Language "JsNpm"}} buildNodeModules, {{end}} - {{if eq .Language "RustCargo"}} rustPkgs, {{end}} {{ range .NixPackageRevisions }} nixpkgs-{{ .}}-pkgs, {{ end }} ... }: { runtime = pkgs.buildEnv { name = "runtimeenv"; @@ -155,7 +153,6 @@ const ( devEnvs = forEachSupportedSystem ({ pkgs, {{if eq .Language "GoModule"}} buildGoApplication, {{end}} {{if eq .Language "PythonPoetry"}} mkPoetryApplication, {{end}} - {{if eq .Language "RustCargo"}} rustPkgs, {{end}} {{ if eq .Language "JsNpm"}} buildNodeModules, {{end}} {{ range .NixPackageRevisions }} nixpkgs-{{ .}}-pkgs, {{ end }} ... }: { development = pkgs.buildEnv {