diff --git a/pkgs/soft-serve.nix b/pkgs/soft-serve.nix index a6fc8ac..8e9df46 100644 --- a/pkgs/soft-serve.nix +++ b/pkgs/soft-serve.nix @@ -1,6 +1,6 @@ # Borrowed from nixpkgs. # See https://github.com/NixOS/nixpkgs/issues/86349 -{ lib, buildGoModule, fetchFromGitHub, makeWrapper, git }: +{ lib, buildGoModule, fetchFromGitHub, makeWrapper, git, bash }: buildGoModule rec { pname = "soft-serve"; @@ -23,7 +23,7 @@ buildGoModule rec { postInstall = '' wrapProgram $out/bin/soft \ - --prefix PATH : "${lib.makeBinPath [ git ]}" + --prefix PATH : "${lib.makeBinPath [ git bash ]}" ''; meta = with lib; {