soft-serve: fix missing bash
This commit is contained in:
parent
9480ab3246
commit
22365053c5
1 changed files with 2 additions and 2 deletions
|
@ -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; {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue