aboutsummaryrefslogtreecommitdiff
path: root/nix/kernel.nix
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-06-07 14:44:33 +1200
committerArslaan Pathan <[email protected]>2026-06-07 14:44:33 +1200
commit8feae8391beb012e07202b029c861a176626f9fe (patch)
tree801af0e48d11db31dd4dac2d532b0df10ca1c086 /nix/kernel.nix
parent2b84c9b4754869d98425a1b3175f783e9b17651c (diff)
downloadyerbalinux-8feae8391beb012e07202b029c861a176626f9fe.tar.xz
yerbalinux-8feae8391beb012e07202b029c861a176626f9fe.zip
Oopsies, those dont go in buildInputs
Diffstat (limited to 'nix/kernel.nix')
-rw-r--r--nix/kernel.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/kernel.nix b/nix/kernel.nix
index 1083c8e..4ccd00d 100644
--- a/nix/kernel.nix
+++ b/nix/kernel.nix
@@ -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 = [ stdenv fetchurl flex bison ncurses elfutils bc cpio rsync gmp libmpc mpfr zlib python3 gnutar gzip patch xz which gcc ];
+ buildInputs = [ flex bison ncurses elfutils bc cpio rsync gmp libmpc mpfr zlib python3 gnutar gzip patch xz which gcc ];
preConfigure = ''
cp ${./linux_config} .config
'';