summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorAnthony Roussel <anthony@roussel.dev>2023-10-27 21:15:01 +0200
committerAnthony Roussel <anthony@roussel.dev>2023-11-09 21:18:19 +0100
commit99c8b3b70a3d0989dfcd7dcf31e6b344af4f7085 (patch)
treea10bfc992f85faf3baf714fa7fdab4768814069d /pkgs/os-specific/linux
parent42ad64f5d1eefc7e8aeb664dbcb8833377f7870a (diff)
downloadnixpkgs-99c8b3b70a3d0989dfcd7dcf31e6b344af4f7085.tar
nixpkgs-99c8b3b70a3d0989dfcd7dcf31e6b344af4f7085.tar.gz
nixpkgs-99c8b3b70a3d0989dfcd7dcf31e6b344af4f7085.tar.bz2
nixpkgs-99c8b3b70a3d0989dfcd7dcf31e6b344af4f7085.tar.lz
nixpkgs-99c8b3b70a3d0989dfcd7dcf31e6b344af4f7085.tar.xz
nixpkgs-99c8b3b70a3d0989dfcd7dcf31e6b344af4f7085.tar.zst
nixpkgs-99c8b3b70a3d0989dfcd7dcf31e6b344af4f7085.zip
tomb: add all required dependencies with wrapProgram
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/tomb/default.nix28
1 files changed, 23 insertions, 5 deletions
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 = {