From 88244f3e5c284fbb342b0bc1c63e3ff71f9981e6 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Mon, 30 Jun 2025 13:33:56 +0200 Subject: [PATCH] haskellPackages.cabal-cargs: enable separate bin output --- pkgs/development/haskell-modules/configuration-nix.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 277fe49a3ff4..795b769677a2 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -158,6 +158,9 @@ builtins.intersectAttrs super { threadscope = enableSeparateBinOutput super.threadscope; + # Binary may be used separately for e.g. editor integrations + cabal-cargs = enableSeparateBinOutput super.cabal-cargs; + # Use the default version of mysql to build this package (which is actually mariadb). # test phase requires networking mysql = dontCheck super.mysql;