summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorWill Fancher <elvishjerricco@gmail.com>2019-01-30 04:44:42 -0500
committerWill Fancher <elvishjerricco@gmail.com>2019-01-30 04:44:42 -0500
commitd2362209c6237463171945fc19a48205e9aba4eb (patch)
tree912f0caf8370fd6425862ea764c70ac0aa0cff8f /pkgs/development
parent96360a3a49ce89e8b757738177c45382649634ca (diff)
downloadnixpkgs-d2362209c6237463171945fc19a48205e9aba4eb.tar
nixpkgs-d2362209c6237463171945fc19a48205e9aba4eb.tar.gz
nixpkgs-d2362209c6237463171945fc19a48205e9aba4eb.tar.bz2
nixpkgs-d2362209c6237463171945fc19a48205e9aba4eb.tar.lz
nixpkgs-d2362209c6237463171945fc19a48205e9aba4eb.tar.xz
nixpkgs-d2362209c6237463171945fc19a48205e9aba4eb.tar.zst
nixpkgs-d2362209c6237463171945fc19a48205e9aba4eb.zip
Fix aeson on GHC 8.4
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
index 04e0a755d10..bd51e4f6c85 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
@@ -76,4 +76,7 @@ self: super: {
     haddock-library = dontHaddock (dontCheck self.haddock-library_1_5_0_1);
   }));
 
+  # cabal2nix doesn't list this because of a conditional on the GHC version.
+  aeson = addBuildDepend super.aeson self.contravariant;
+
 }