From 1a67a646df6a56b6aac82f3d247be2954fc50c2e Mon Sep 17 00:00:00 2001 From: meator Date: Fri, 14 Feb 2025 12:53:40 +0100 Subject: [PATCH] hxtools: fix shebangs --- pkgs/by-name/hx/hxtools/package.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/by-name/hx/hxtools/package.nix b/pkgs/by-name/hx/hxtools/package.nix index c2a560f87494..cbb1950674b3 100644 --- a/pkgs/by-name/hx/hxtools/package.nix +++ b/pkgs/by-name/hx/hxtools/package.nix @@ -5,6 +5,8 @@ pkg-config, zstd, libHX, + perl, + bash, }: stdenv.mkDerivation (finalAttrs: { @@ -22,6 +24,9 @@ stdenv.mkDerivation (finalAttrs: { ]; buildInputs = [ + # Perl and Bash are pulled to make patchShebangs work. + perl + bash libHX ];