[PATCH] host/initramfs: Fix 'nix-shell --pure --run "make run"'
Add the needed build-dependency on jq. Signed-off-by: Demi Marie Obenour <demiobenour@gmail.com> --- host/initramfs/shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/host/initramfs/shell.nix b/host/initramfs/shell.nix index eeba865e3ac793f67ae1808a92cf5eb1b37d57af..8b47aa53bc19a818ebf563e281f22e82202a8ea5 100644 --- a/host/initramfs/shell.nix +++ b/host/initramfs/shell.nix @@ -3,7 +3,7 @@ import ../../lib/call-package.nix ( { callSpectrumPackage, rootfs, pkgsStatic, stdenv -, cryptsetup, qemu_kvm, tar2ext4, util-linux +, cryptsetup, jq, qemu_kvm, tar2ext4, util-linux }: let @@ -12,7 +12,7 @@ in initramfs.overrideAttrs ({ nativeBuildInputs ? [], env ? {}, ... }: { nativeBuildInputs = nativeBuildInputs ++ [ - cryptsetup qemu_kvm tar2ext4 util-linux + cryptsetup jq qemu_kvm tar2ext4 util-linux ]; env = env // { --- base-commit: 1d666582892fbdf812662b4490caf7821078eaf9 change-id: 20251105-fix-nix-shell-initramfs-244323043a9d -- Sincerely, Demi Marie Obenour (she/her/hers)
This patch has been committed as 22e216712322cdfb85094bbd27ff34c4366fad41, which can be viewed online at https://spectrum-os.org/git/spectrum/commit/?id=22e216712322cdfb85094bbd27ff.... This is an automated message. Send comments/questions/requests to: Alyssa Ross <hi@alyssa.is>
participants (2)
-
Alyssa Ross -
Demi Marie Obenour