about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authormaralorn <mail@maralorn.de>2023-06-26 23:32:15 +0200
committermaralorn <mail@maralorn.de>2023-06-26 23:32:15 +0200
commitbecc80b722160e1a7d0bfc965af82c30687d1de9 (patch)
tree523b9b90e01bbb4eed6399bb294d996bfd0abfb7 /pkgs/development/haskell-modules
parent61dd345bfe2340d08a588e83e0e513587e59b278 (diff)
downloadnixlib-becc80b722160e1a7d0bfc965af82c30687d1de9.tar
nixlib-becc80b722160e1a7d0bfc965af82c30687d1de9.tar.gz
nixlib-becc80b722160e1a7d0bfc965af82c30687d1de9.tar.bz2
nixlib-becc80b722160e1a7d0bfc965af82c30687d1de9.tar.lz
nixlib-becc80b722160e1a7d0bfc965af82c30687d1de9.tar.xz
nixlib-becc80b722160e1a7d0bfc965af82c30687d1de9.tar.zst
nixlib-becc80b722160e1a7d0bfc965af82c30687d1de9.zip
haskellPackages.monad-logger-extras: Apply patch
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index c9799324d033..dcec56ad07de 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1493,6 +1493,12 @@ self: super: {
     sha256 = "1c5ck2ibag2gcyag6rjivmlwdlp5k0dmr8nhk7wlkzq2vh7zgw63";
   }) super.splot;
 
+  # Fix build with newer monad-logger: https://github.com/obsidiansystems/monad-logger-extras/pull/5
+  monad-logger-extras = appendPatch (fetchpatch {
+    url = "https://github.com/obsidiansystems/monad-logger-extras/commit/ffebbb46263690d641f30264563f687f3e8d4952.patch";
+    sha256 = "sha256-tt5328mnePwzZU6HRCN04Ak879Pj4M+CjLwY4/X1fxQ=";
+  }) super.monad-logger-extras;
+
   # Fails with encoding problems, likely needs locale data.
   # Test can be executed by adding which to testToolDepends and
   # $PWD/dist/build/haskeline-examples-Test to $PATH.