···8383// For dependencies using a custom registry (i.e. not nixpkgs), it collects
8484// all packages and adds a single 'nix profile install' step to the
8585// beginning of the workflow's step list.
8686-func dependencyStep(twf tangled.Pipeline_Workflow) Step {
8686+func dependencyStep(twf tangled.Pipeline_Workflow) *Step {
8787 var customPackages []string
88888989 for _, d := range twf.Dependencies {
···111111 "NIX_SHOW_DOWNLOAD_PROGRESS": "0",
112112 },
113113 }
114114- return installStep
114114+ return &installStep
115115 }
116116- return Step{}
116116+ return nil
117117}