From fa0a071b2eefc38727e5304e19aafe311f85b793 Mon Sep 17 00:00:00 2001 From: Henning Thielemann Date: Sat, 22 Apr 2023 12:35:28 +0200 Subject: [PATCH] haskellPackages: add buildExamples Cabal flag to audacity, med-module, spreadsheet --- pkgs/development/haskell-modules/configuration-nix.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index bf5fe55584ce..4a1d0d3dfbb3 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -177,6 +177,10 @@ self: super: builtins.intersectAttrs super { ### END HASKELL-LANGUAGE-SERVER SECTION ### ########################################### + audacity = enableCabalFlag "buildExamples" super.audacity; + med-module = enableCabalFlag "buildExamples" super.med-module; + spreadsheet = enableCabalFlag "buildExamples" super.spreadsheet; + # fix errors caused by hardening flags epanet-haskell = disableHardening ["format"] super.epanet-haskell;