summary refs log tree commit diff
diff options
context:
space:
mode:
authorCharlotte Van Petegem <charlotte@vanpetegem.me>2022-07-25 18:51:53 +0200
committerCharlotte Van Petegem <charlotte@vanpetegem.me>2022-07-25 18:52:10 +0200
commit3fdefecb10752db6f260cf5721390b35ded49ed8 (patch)
treec218669e1fc25708964c1268e20c3ec40be15d1e
parentf5da53c188aeafb0f092f329350b1099d3d2f62a (diff)
downloadnixpkgs-3fdefecb10752db6f260cf5721390b35ded49ed8.tar
nixpkgs-3fdefecb10752db6f260cf5721390b35ded49ed8.tar.gz
nixpkgs-3fdefecb10752db6f260cf5721390b35ded49ed8.tar.bz2
nixpkgs-3fdefecb10752db6f260cf5721390b35ded49ed8.tar.lz
nixpkgs-3fdefecb10752db6f260cf5721390b35ded49ed8.tar.xz
nixpkgs-3fdefecb10752db6f260cf5721390b35ded49ed8.tar.zst
nixpkgs-3fdefecb10752db6f260cf5721390b35ded49ed8.zip
pass: add openssh dependency to path
pass git needs openssh when pushing to a remote ssh host.
-rw-r--r--pkgs/tools/security/pass/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/security/pass/default.nix b/pkgs/tools/security/pass/default.nix
index 7468b5dcc8d..7d214f1649a 100644
--- a/pkgs/tools/security/pass/default.nix
+++ b/pkgs/tools/security/pass/default.nix
@@ -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