Răsfoiți Sursa

fix(gogs): add `bash` to the wrapped `PATH` in `packages/gogs.nix`

Zander Hawke 1 zi în urmă
părinte
comite
1120ccc82f
1 a modificat fișierele cu 2 adăugiri și 1 ștergeri
  1. 2 1
      packages/gogs.nix

+ 2 - 1
packages/gogs.nix

@@ -3,6 +3,7 @@
   fetchFromGitHub,
   buildGoModule,
   makeWrapper,
+  bash,
   git,
   openssh,
   pam,
@@ -37,7 +38,7 @@ buildGoModule rec {
     cp -r conf templates public $out/share/gogs/
 
     wrapProgram $out/bin/gogs \
-      --prefix PATH : ${lib.makeBinPath [ git openssh ]}
+      --prefix PATH : ${lib.makeBinPath [ bash git openssh ]}
   '';
 
   meta = {