mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pass: add openssh dependency to path
pass git needs openssh when pushing to a remote ssh host.
This commit is contained in:
parent
f5da53c188
commit
3fdefecb10
1 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, lib, pkgs, fetchurl, buildEnv
|
||||
, coreutils, findutils, gnugrep, gnused, getopt, git, tree, gnupg, openssl
|
||||
, which, procps , qrencode , makeWrapper, pass, symlinkJoin
|
||||
, which, openssh, procps, qrencode, makeWrapper, pass, symlinkJoin
|
||||
|
||||
, xclip ? null, xdotool ? null, dmenu ? null
|
||||
, x11Support ? !stdenv.isDarwin , dmenuSupport ? (x11Support || waylandSupport)
|
||||
|
@ -91,8 +91,9 @@ stdenv.mkDerivation rec {
|
|||
gnused
|
||||
tree
|
||||
which
|
||||
qrencode
|
||||
openssh
|
||||
procps
|
||||
qrencode
|
||||
] ++ optional stdenv.isDarwin openssl
|
||||
++ optional x11Support xclip
|
||||
++ optional waylandSupport wl-clipboard
|
||||
|
|
Loading…
Reference in a new issue