haskellPackages.epanet-haskell: Turn format hardening off

This commit is contained in:
Franz Pletz 2016-02-26 18:39:28 +01:00
parent 5a1a8b6c67
commit d4ece75fd6

View file

@ -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; };