summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-03-06 10:02:50 +0100
committerPeter Simons <simons@cryp.to>2018-03-06 21:10:39 +0100
commitf4b757bd3dfe2baa4033e0dbac21ed93aec643c2 (patch)
tree0d0a5c52f998c72b1a3020606f38a839ff9c9cbd /pkgs/development
parentebfecf3e76d30cdc846b21fca97a42d12a674f5c (diff)
downloadnixlib-f4b757bd3dfe2baa4033e0dbac21ed93aec643c2.tar
nixlib-f4b757bd3dfe2baa4033e0dbac21ed93aec643c2.tar.gz
nixlib-f4b757bd3dfe2baa4033e0dbac21ed93aec643c2.tar.bz2
nixlib-f4b757bd3dfe2baa4033e0dbac21ed93aec643c2.tar.lz
nixlib-f4b757bd3dfe2baa4033e0dbac21ed93aec643c2.tar.xz
nixlib-f4b757bd3dfe2baa4033e0dbac21ed93aec643c2.tar.zst
nixlib-f4b757bd3dfe2baa4033e0dbac21ed93aec643c2.zip
haskell-changelogged: add override to fix the build
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 08443de111dd..de6dcb9dd644 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1006,4 +1006,7 @@ self: super: {
   # Needs older hlint
   hpio = dontCheck super.hpio;
 
+  # Needs turtle >=1.5.0, which we use by default in lts-10.x.
+  changelogged = super.changelogged.override { turtle = self.turtle_1_5_4; };
+
 }