Explorar el Código

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

Zander Hawke hace 1 día
padre
commit
1120ccc82f
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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 = {