From 0307a8af6ce903e217377d053d1157f816aa06fe Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Sun, 1 Aug 2021 18:19:11 +0200 Subject: [PATCH] pkgs/top-level/release.nix: build pkgsLLVM.stdenv as part of trunk Having pkgsLLVM.stdenv built with nixpkgs:trunk will make building anything in pkgsLLVM decidedly less painful since it will eliminate the need to build LLVM and clang locally, which shouldn't be as bad on hydra. Darwin is disabled for now since it doesn't evaluate correctly there (infinite recursion problem with the SDK). --- pkgs/top-level/release.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index e04b6e7e681..dfb3b639b27 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -194,6 +194,7 @@ let idrisPackages = packagePlatforms pkgs.idrisPackages; agdaPackages = packagePlatforms pkgs.agdaPackages; + pkgsLLVM.stdenv = [ "x86_64-linux" "aarch64-linux" ]; pkgsMusl.stdenv = [ "x86_64-linux" "aarch64-linux" ]; pkgsStatic.stdenv = [ "x86_64-linux" "aarch64-linux" ];