mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
sparkleshare: add missing 'bash' dependency
Sparkleshare requires 'sh' to be in its PATH, or push-operations fail. Its PATH consists of a single entry, which is configured in the postInstall phase. The bash-derivative includes 'sh', and adding it to the dependencies resolves the issue.
This commit is contained in:
parent
9ae9f922d5
commit
b78ec60157
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
appindicator-sharp,
|
||||
bash,
|
||||
coreutils,
|
||||
fetchFromGitHub,
|
||||
git,
|
||||
|
@ -57,6 +58,7 @@ stdenv.mkDerivation rec {
|
|||
--set PATH ${symlinkJoin {
|
||||
name = "mono-path";
|
||||
paths = [
|
||||
bash
|
||||
coreutils
|
||||
git
|
||||
git-lfs
|
||||
|
|
Loading…
Reference in a new issue