From e15ee78356d5ea3fedd7563289feecbfa8ff19f1 Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Sun, 7 Jun 2026 14:34:42 +1200 Subject: deps --- nix/kernel.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'nix') diff --git a/nix/kernel.nix b/nix/kernel.nix index 347e46d..9714b60 100644 --- a/nix/kernel.nix +++ b/nix/kernel.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, flex, bison }: +{ stdenv, fetchurl, flex, bison, ncurses }: stdenv.mkDerivation { name = "linux-yerba"; @@ -6,6 +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 ]; preConfigure = '' cp ${./linux_config} .config ''; -- cgit v1.2.3