soft-serve: fix missing bash

This commit is contained in:
Tim Schubert 2023-07-09 02:26:14 +02:00
parent 9480ab3246
commit 22365053c5
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA

View file

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