From 148fcb796e239a797f9dede4e7fee6e08390cef2 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Mon, 25 Jul 2022 18:54:51 +0200 Subject: [PATCH] Add pass ssh patch --- patches/182848.patch | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 patches/182848.patch diff --git a/patches/182848.patch b/patches/182848.patch new file mode 100644 index 00000000..35346fdd --- /dev/null +++ b/patches/182848.patch @@ -0,0 +1,33 @@ +From 3fdefecb10752db6f260cf5721390b35ded49ed8 Mon Sep 17 00:00:00 2001 +From: Charlotte Van Petegem +Date: Mon, 25 Jul 2022 18:51:53 +0200 +Subject: [PATCH] pass: add openssh dependency to path + +pass git needs openssh when pushing to a remote ssh host. +--- + pkgs/tools/security/pass/default.nix | 5 +++-- + 1 file changed, 3 insertions(+), 2 deletions(-) + +diff --git a/pkgs/tools/security/pass/default.nix b/pkgs/tools/security/pass/default.nix +index 7468b5dcc8d30..7d214f1649a33 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