summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Puppe <dev@mpuppe.de>2023-03-05 15:30:33 +0100
committerMartin Puppe <dev@mpuppe.de>2023-03-05 15:30:33 +0100
commit1e1a1e0e853da0d66285398d85fc5b4cdb7f72c6 (patch)
tree5005f8617f83dd1629f9832d12e1a6a266e3a936
parent833bd514a247269d9e4896edc43b3e14f50105b0 (diff)
downloadnixpkgs-1e1a1e0e853da0d66285398d85fc5b4cdb7f72c6.tar
nixpkgs-1e1a1e0e853da0d66285398d85fc5b4cdb7f72c6.tar.gz
nixpkgs-1e1a1e0e853da0d66285398d85fc5b4cdb7f72c6.tar.bz2
nixpkgs-1e1a1e0e853da0d66285398d85fc5b4cdb7f72c6.tar.lz
nixpkgs-1e1a1e0e853da0d66285398d85fc5b4cdb7f72c6.tar.xz
nixpkgs-1e1a1e0e853da0d66285398d85fc5b4cdb7f72c6.tar.zst
nixpkgs-1e1a1e0e853da0d66285398d85fc5b4cdb7f72c6.zip
dehydrated: add missing dependency hexdump
-rw-r--r--pkgs/tools/admin/dehydrated/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/admin/dehydrated/default.nix b/pkgs/tools/admin/dehydrated/default.nix
index 5ecb40f3c39..d36028e3b22 100644
--- a/pkgs/tools/admin/dehydrated/default.nix
+++ b/pkgs/tools/admin/dehydrated/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, coreutils, curl, diffutils, gawk, gnugrep, gnused, openssl, makeWrapper, fetchFromGitHub, installShellFiles }:
+{ lib, stdenv, coreutils, curl, diffutils, gawk, gnugrep, gnused, hexdump, openssl, makeWrapper, fetchFromGitHub, installShellFiles }:
 stdenv.mkDerivation rec {
   pname = "dehydrated";
   version = "0.7.1";
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
 
     mkdir -p $out/bin
     cp -a dehydrated $out/bin
-    wrapProgram "$out/bin/dehydrated" --prefix PATH : "${lib.makeBinPath [ openssl coreutils gnused gnugrep diffutils curl gawk ]}"
+    wrapProgram "$out/bin/dehydrated" --prefix PATH : "${lib.makeBinPath [ openssl coreutils gnused gnugrep diffutils curl gawk hexdump ]}"
   '';
 
   meta = with lib; {