From 9274620f17af81aa57d44bf5fe51fc238fb1a936 Mon Sep 17 00:00:00 2001 From: Lan Tian Date: Thu, 11 Jun 2026 19:18:48 -0700 Subject: [PATCH] Fix evaluation after nixpkgs platform change (Fix #86) --- helpers.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/helpers.nix b/helpers.nix index a9cc26d..43a04d5 100644 --- a/helpers.nix +++ b/helpers.nix @@ -36,20 +36,9 @@ rec { stdenvLLVM = let - mkLLVMPlatform = - platform: - platform - // { - linux-kernel = platform.linux-kernel // { - makeFlags = (platform.linux-kernel.makeFlags or [ ]) ++ ltoMakeflags; - }; - }; - stdenv' = pkgs.overrideCC hostLLVM.stdenv hostLLVM.clangUseLLVM; in stdenv'.override (old: { - hostPlatform = mkLLVMPlatform stdenv'.hostPlatform; - buildPlatform = mkLLVMPlatform stdenv'.buildPlatform; extraNativeBuildInputs = [ hostLLVM.lld pkgs.patchelf