summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 80047f0ca1ed..e948d1833b83 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -44,6 +44,9 @@ self: super: {
   c2hs = pkgs.lib.overrideDerivation (dontCheck super.c2hs) (drv: {
     hardening_format = false;
   });
+  epanet-haskell = pkgs.lib.overrideDerivation super.epanet-haskell (drv: {
+    hardening_format = false;
+  });
 
   # The package doesn't compile with ruby 1.9, which is our default at the moment.
   hruby = super.hruby.override { ruby = pkgs.ruby_2_1; };