diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5d751992fa71..64a82ed42a87 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1130,4 +1130,10 @@ self: super: { safe-money-serialise = super.safe-money-serialise.override { safe-money = self.safe-money_0_7; }; safe-money-xmlbf = super.safe-money-xmlbf.override { safe-money = self.safe-money_0_7; }; + # https://github.com/adinapoli/mandrill/pull/52 + mandrill = appendPatch super.mandrill (pkgs.fetchpatch { + url = https://github.com/adinapoli/mandrill/commit/30356d9dfc025a5f35a156b17685241fc3882c55.patch; + sha256 = "1qair09xs6vln3vsjz7sy4hhv037146zak4mq3iv6kdhmp606hqv"; + }); + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super