From 6c3c5e5bd2cd53413f1b1e2d4efc076f5dedd3e0 Mon Sep 17 00:00:00 2001 From: Marcin Szamotulski Date: Mon, 30 Sep 2024 11:01:32 +0200 Subject: [PATCH] WIP --- nix/ci.nix | 2 +- nix/ouroboros-network.nix | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/nix/ci.nix b/nix/ci.nix index a040ee3736..8818c5825b 100644 --- a/nix/ci.nix +++ b/nix/ci.nix @@ -36,7 +36,7 @@ let jobs = lib.filterAttrsRecursive (n: v: n != "recurseForDerivations") ({ native = { ghc908 = mkHaskellJobsFor true (buildSystem == "x86_64-linux") - pkgs.ouroboros-network; + pkgs.ouroboros-network.projectVariants.default; } // lib.optionalAttrs (buildSystem == "x86_64-linux") { format = import ./formatting.nix pkgs; inherit (pkgs) network-docs; diff --git a/nix/ouroboros-network.nix b/nix/ouroboros-network.nix index b9a784b62c..473c16a731 100644 --- a/nix/ouroboros-network.nix +++ b/nix/ouroboros-network.nix @@ -82,7 +82,10 @@ let ) // # default compiler with profiling enabled - { profiled = mkProfiledVariant defaultCompiler; }; + { + profiled = mkProfiledVariant defaultCompiler; + default = { compiler-nix-name = defaultCompiler; }; + }; # # CHaP