diff options
Diffstat (limited to 'nix')
| -rw-r--r-- | nix/kernel.nix | 3 |
1 files changed, 2 insertions, 1 deletions
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 ''; |
