summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2017-01-12 11:46:55 +0100
committerDomen Kožar <domen@dev.si>2017-01-12 11:47:14 +0100
commit60435691f78dc533d49bf30751e1a8328b67367a (patch)
treedc69a79ce17f9514669a37d598321c5e44d8d2ee /pkgs/development/haskell-modules/configuration-common.nix
parent44efd447b65df3bc76089900fe34efdb17854a55 (diff)
downloadnixpkgs-60435691f78dc533d49bf30751e1a8328b67367a.tar
nixpkgs-60435691f78dc533d49bf30751e1a8328b67367a.tar.gz
nixpkgs-60435691f78dc533d49bf30751e1a8328b67367a.tar.bz2
nixpkgs-60435691f78dc533d49bf30751e1a8328b67367a.tar.lz
nixpkgs-60435691f78dc533d49bf30751e1a8328b67367a.tar.xz
nixpkgs-60435691f78dc533d49bf30751e1a8328b67367a.tar.zst
nixpkgs-60435691f78dc533d49bf30751e1a8328b67367a.zip
haskellPackages.servant-auth: fix build
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 3c48be53141..8395898b2d9 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1081,6 +1081,13 @@ self: super: {
     servant = self.servant_0_9_1_1;
   });
 
+  # https://github.com/plow-technologies/servant-auth/issues/20
+  servant-auth = dontCheck super.servant-auth;
+
+  servant-auth-server = super.servant-auth-server.overrideScope (self: super: {
+    jose = super.jose_0_5_0_2;
+  });
+
   # https://github.com/pontarius/pontarius-xmpp/issues/105
   pontarius-xmpp = dontCheck super.pontarius-xmpp;