From 99c8b3b70a3d0989dfcd7dcf31e6b344af4f7085 Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Fri, 27 Oct 2023 21:15:01 +0200 Subject: tomb: add all required dependencies with wrapProgram --- pkgs/os-specific/linux/tomb/default.nix | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) (limited to 'pkgs/os-specific') diff --git a/pkgs/os-specific/linux/tomb/default.nix b/pkgs/os-specific/linux/tomb/default.nix index 5fff28c3f27..4fad6e7547e 100644 --- a/pkgs/os-specific/linux/tomb/default.nix +++ b/pkgs/os-specific/linux/tomb/default.nix @@ -3,16 +3,20 @@ , fetchFromGitHub , substituteAll , makeWrapper -, getent -, gettext , zsh -, pinentry +, coreutils , cryptsetup +, e2fsprogs +, file +, gawk +, getent +, gettext +, gnugrep , gnupg , libargon2 , lsof +, pinentry , util-linux -, e2fsprogs , nix-update-script }: @@ -42,7 +46,21 @@ stdenv.mkDerivation rec { install -Dm644 doc/tomb.1 $out/share/man/man1/tomb.1 wrapProgram $out/bin/tomb \ - --prefix PATH : $out/bin:${lib.makeBinPath [ cryptsetup e2fsprogs getent gettext gnupg libargon2 lsof pinentry util-linux ]} + --prefix PATH : $out/bin:${lib.makeBinPath [ + coreutils + cryptsetup + e2fsprogs + file + gawk + getent + gettext + gnugrep + gnupg + libargon2 + lsof + pinentry + util-linux + ]} ''; passthru = { -- cgit 1.4.1