diff options
| author | Arslaan Pathan <[email protected]> | 2026-06-07 14:34:42 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-06-07 14:34:42 +1200 |
| commit | e15ee78356d5ea3fedd7563289feecbfa8ff19f1 (patch) | |
| tree | e7163a00788a237858d811bd203a755d9c21d1d5 /nix | |
| parent | f0098255eb9e5418be84d9852d780ccd46f263b9 (diff) | |
| download | yerbalinux-e15ee78356d5ea3fedd7563289feecbfa8ff19f1.tar.xz yerbalinux-e15ee78356d5ea3fedd7563289feecbfa8ff19f1.zip | |
deps
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 ''; |
