summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-09-19 13:45:42 +0200
committerPeter Simons <simons@cryp.to>2019-09-19 13:46:20 +0200
commitb08ced9110398606f5d9881bc2bc4fd2f2e24404 (patch)
tree3aa79c6a7d9fed124b621557b84ec824cafc3b56 /pkgs
parente9322d43861f4dd0aa62e31e66cdd6abe117e2e0 (diff)
downloadnixpkgs-b08ced9110398606f5d9881bc2bc4fd2f2e24404.tar
nixpkgs-b08ced9110398606f5d9881bc2bc4fd2f2e24404.tar.gz
nixpkgs-b08ced9110398606f5d9881bc2bc4fd2f2e24404.tar.bz2
nixpkgs-b08ced9110398606f5d9881bc2bc4fd2f2e24404.tar.lz
nixpkgs-b08ced9110398606f5d9881bc2bc4fd2f2e24404.tar.xz
nixpkgs-b08ced9110398606f5d9881bc2bc4fd2f2e24404.tar.zst
nixpkgs-b08ced9110398606f5d9881bc2bc4fd2f2e24404.zip
haskell-cabal-plan: add override to fix the build
Diffstat (limited to 'pkgs')
-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 6dab3cee350..dde4092327b 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1228,4 +1228,7 @@ self: super: {
     '';
   });
 
+  # The LTS-14.x version of optparse-applicative is too old.
+  cabal-plan = super.cabal-plan.override { optparse-applicative = self.optparse-applicative_0_15_1_0; };
+
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super