about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFalco Peijnenburg <falco@lumiguide.nl>2017-09-10 12:09:23 +0200
committerPeter Simons <simons@cryp.to>2017-09-10 20:47:01 +0200
commit5d57aaebd55f9813309c262f9d44437ad4947a33 (patch)
tree14ef8c9935dc702c11e7cf6c1ab8679b8a3509dc
parentdc9c2c7bac65f0138994a05f81b685867a792db5 (diff)
haskellPackages.wai-secure-cookies: Fixed build
-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 2820c538b76b1..320e96d56c1ea 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -927,4 +927,11 @@ self: super: {
 
   # https://github.com/graknlabs/grakn-haskell/pull/1
   grakn = dontCheck (doJailbreak super.grakn);
+
+  # cryptonite == 0.24.x, protolude == 0.2.x
+  wai-secure-cookies = super.wai-secure-cookies.override {
+    cryptonite = super.cryptonite_0_24;
+    protolude = super.protolude_0_2;
+  };
+
 }