about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-nix.nix
diff options
context:
space:
mode:
authorMichael Alan Dorman <mdorman@ironicdesign.com>2017-10-12 08:09:07 -0400
committerPeter Simons <simons@cryp.to>2017-10-12 18:53:27 +0100
commit11efabe29c5468b6bfdaa42ef31209dc9276b684 (patch)
tree676f4d48202b239fd374503e3cd4e11c3470e9f4 /pkgs/development/haskell-modules/configuration-nix.nix
parent57594bcf0a53aff823e9b2043f8999edc8cf1c37 (diff)
downloadnixlib-11efabe29c5468b6bfdaa42ef31209dc9276b684.tar
nixlib-11efabe29c5468b6bfdaa42ef31209dc9276b684.tar.gz
nixlib-11efabe29c5468b6bfdaa42ef31209dc9276b684.tar.bz2
nixlib-11efabe29c5468b6bfdaa42ef31209dc9276b684.tar.lz
nixlib-11efabe29c5468b6bfdaa42ef31209dc9276b684.tar.xz
nixlib-11efabe29c5468b6bfdaa42ef31209dc9276b684.tar.zst
nixlib-11efabe29c5468b6bfdaa42ef31209dc9276b684.zip
htoml-megaparsec: build against newest megaparsec
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-nix.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 91e95de94af5..1051c4e416f1 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -501,4 +501,6 @@ self: super: builtins.intersectAttrs super {
   # Without this override, the builds lacks pkg-config.
   opencv-extra = addPkgconfigDepend super.opencv-extra (pkgs.opencv3.override { enableContrib = true; });
 
+  # Written against the 6.X series of megaparsec
+  htoml-megaparsec = super.htoml-megaparsec.override { megaparsec = self.megaparsec_6_2_0; };
 }