diff options
| author | Arslaan Pathan <[email protected]> | 2026-06-07 14:37:39 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-06-07 14:37:39 +1200 |
| commit | 9c10f8d445a80830063418e24c4725341a57f29f (patch) | |
| tree | 967bc8e4337947e17d40ac31ffca8c04b19e499e /nix/kernel.nix | |
| parent | e15ee78356d5ea3fedd7563289feecbfa8ff19f1 (diff) | |
| download | yerbalinux-9c10f8d445a80830063418e24c4725341a57f29f.tar.xz yerbalinux-9c10f8d445a80830063418e24c4725341a57f29f.zip | |
Add elfutils to deps
Diffstat (limited to 'nix/kernel.nix')
| -rw-r--r-- | nix/kernel.nix | 4 |
1 files changed, 2 insertions, 2 deletions
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 ''; |
