summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2016-08-21 11:11:17 +0200
committerGitHub <noreply@github.com>2016-08-21 11:11:17 +0200
commit359ab67aeed6d3c92159ec0a5e08e68f778defbb (patch)
treee2689b8696cfb11279c5ab6da9928b081eb7578b /pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
parent7a3260c590321272152976e66038ad80f296f6cf (diff)
parent6154fecdbd5f5363f67a3fcce3bfcb97b6bf1fe0 (diff)
downloadnixlib-359ab67aeed6d3c92159ec0a5e08e68f778defbb.tar
nixlib-359ab67aeed6d3c92159ec0a5e08e68f778defbb.tar.gz
nixlib-359ab67aeed6d3c92159ec0a5e08e68f778defbb.tar.bz2
nixlib-359ab67aeed6d3c92159ec0a5e08e68f778defbb.tar.lz
nixlib-359ab67aeed6d3c92159ec0a5e08e68f778defbb.tar.xz
nixlib-359ab67aeed6d3c92159ec0a5e08e68f778defbb.tar.zst
nixlib-359ab67aeed6d3c92159ec0a5e08e68f778defbb.zip
Merge pull request #17851 from jezen/master
haskellPackages.yesod-auth-oauth2: fix build inputs for ghc7.10.x
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index 9f7db937814d..aebbf4934b68 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -65,6 +65,8 @@ self: super: {
 
   hoauth2 = overrideCabal super.hoauth2 (drv: { testDepends = (drv.testDepends or []) ++ [ self.wai self.warp ]; });
 
+  yesod-auth-oauth2 = overrideCabal super.yesod-auth-oauth2 (drv: { testDepends = (drv.testDepends or []) ++ [ self.load-env self.yesod ]; });
+
   # Setup: At least the following dependencies are missing: base <4.8
   hspec-expectations = overrideCabal super.hspec-expectations (drv: {
     postPatch = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal";