Skip to content

Commit

Permalink
fix: rust bug for oci
Browse files Browse the repository at this point in the history
Signed-off-by: Rakshit Gondwal <[email protected]>
  • Loading branch information
rakshitgondwal committed Jun 4, 2024
1 parent 1f1ed12 commit 86d25f5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pkg/nix/template/templates.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 }} ... }: {
Expand All @@ -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";
Expand All @@ -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 {
Expand Down

0 comments on commit 86d25f5

Please sign in to comment.