From 673f2563e48a4e1e37af6985d4d18f56bff741ea Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Thu, 11 Jun 2026 19:25:19 +1200 Subject: Another clean slate. I cannot continue to fight Nix and try to make it do what it was never meant to do. Yocto time! --- nix/kernel.nix | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 nix/kernel.nix (limited to 'nix/kernel.nix') diff --git a/nix/kernel.nix b/nix/kernel.nix deleted file mode 100644 index 9d659f9..0000000 --- a/nix/kernel.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ stdenv, fetchurl, linuxKernel }: - -stdenv.mkDerivation { - name = "linux-yerba"; - src = fetchurl { - url = "https://cdn.kernel.org/pub/linux/kernel/v7.x/linux-7.0.11.tar.xz"; - hash = "sha256-5WyDVt2gETamBBxu+DK9Dsmb0tNd/5eDKqXsEO0BQwQ="; - }; - buildInputs = linuxKernel.kernels.linux_7_0.buildInputs; - nativeBuildInputs = linuxKernel.kernels.linux_7_0.nativeBuildInputs; - preConfigure = '' - cp ${./linux_config} .config - ''; - buildPhase = '' - make -j$NIX_BUILD_CORES bzImage - ''; - installPhase = '' - cp arch/x86/boot/bzImage $out - ''; -} -- cgit v1.2.3