Skip to content

Commit

Permalink
Merge pull request #6 from buildsafedev/fix/rust-bug-for-oci
Browse files Browse the repository at this point in the history
fix: rust bug for oci
  • Loading branch information
rakshitgondwal committed Jun 4, 2024
2 parents 1f1ed12 + 86d25f5 commit fd63f5d
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 fd63f5d

Please sign in to comment.