Skip to content

Commit

Permalink
treewide: use sensible pinentry flavor
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz authored and SuperSandro2000 committed Mar 2, 2024
1 parent 764d15f commit 2520c2e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pkgs/applications/version-management/blackbox/default.nix
Expand Up @@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
expect
which
coreutils
pinentry.tty
pinentry
git
gnutar
procps
Expand Down
4 changes: 2 additions & 2 deletions pkgs/by-name/go/goldwarden/package.nix
Expand Up @@ -4,7 +4,7 @@
, makeBinaryWrapper
, libfido2
, dbus
, pinentry
, pinentry-gnome3
, nix-update-script
}:

Expand All @@ -29,7 +29,7 @@ buildGoModule rec {

postInstall = ''
wrapProgram $out/bin/goldwarden \
--suffix PATH : ${lib.makeBinPath [dbus pinentry]}
--suffix PATH : ${lib.makeBinPath [dbus pinentry-gnome3]}
install -Dm644 $src/resources/com.quexten.goldwarden.policy -t $out/share/polkit-1/actions
'';
Expand Down
8 changes: 6 additions & 2 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -30374,7 +30374,9 @@ with pkgs;

bgpq4 = callPackage ../tools/networking/bgpq4 { };

blackbox = callPackage ../applications/version-management/blackbox { };
blackbox = callPackage ../applications/version-management/blackbox {
pinentry = pinentry-curses;
};

bleachbit = callPackage ../applications/misc/bleachbit { };

Expand Down Expand Up @@ -41310,7 +41312,9 @@ with pkgs;

linkchecker = callPackage ../tools/networking/linkchecker { };

tomb = callPackage ../os-specific/linux/tomb { };
tomb = callPackage ../os-specific/linux/tomb {
pinentry = pinentry-curses;
};

sccache = callPackage ../development/tools/misc/sccache { };

Expand Down
4 changes: 3 additions & 1 deletion pkgs/top-level/python-packages.nix
Expand Up @@ -14920,7 +14920,9 @@ self: super: with self; {

treq = callPackage ../development/python-modules/treq { };

trezor-agent = callPackage ../development/python-modules/trezor-agent { };
trezor-agent = callPackage ../development/python-modules/trezor-agent {
pinentry = pkgs.pinentry-curses;
};

trezor = callPackage ../development/python-modules/trezor { };

Expand Down

0 comments on commit 2520c2e

Please sign in to comment.