From d4ece75fd6df3410b8f038db152b04fb8014496d Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 26 Feb 2016 18:39:28 +0100 Subject: [PATCH] haskellPackages.epanet-haskell: Turn format hardening off --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 80047f0ca1e..e948d1833b8 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; };