From 9c10f8d445a80830063418e24c4725341a57f29f Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Sun, 7 Jun 2026 14:37:39 +1200 Subject: Add elfutils to deps --- nix/kernel.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nix') diff --git a/nix/kernel.nix b/nix/kernel.nix index 9714b60..124e2d7 100644 --- a/nix/kernel.nix +++ b/nix/kernel.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, flex, bison, ncurses }: +{ stdenv, fetchurl, flex, bison, ncurses, elfutils }: stdenv.mkDerivation { name = "linux-yerba"; @@ -6,7 +6,7 @@ stdenv.mkDerivation { url = "https://cdn.kernel.org/pub/linux/kernel/v7.x/linux-7.0.11.tar.xz"; hash = "sha256-5WyDVt2gETamBBxu+DK9Dsmb0tNd/5eDKqXsEO0BQwQ="; }; - buildInputs = [ flex bison ncurses ]; + buildInputs = [ flex bison ncurses elfutils ]; preConfigure = '' cp ${./linux_config} .config ''; -- cgit v1.2.3