Skip to content
Snippets Groups Projects
Commit 4284b0ac authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Update the nix packaging with the new dependencies

parent 85148a5c
No related branches found
No related tags found
1 merge request!30Expose a browser facing API for charge
......@@ -57,6 +57,7 @@ in { system, compiler, flags, pkgs, hsPkgs, pkgconfPkgs, ... }:
"library" = {
depends = [
(hsPkgs."base" or (buildDepError "base"))
(hsPkgs."bytestring" or (buildDepError "bytestring"))
(hsPkgs."optparse-applicative" or (buildDepError "optparse-applicative"))
(hsPkgs."aeson" or (buildDepError "aeson"))
(hsPkgs."servant" or (buildDepError "servant"))
......@@ -67,6 +68,7 @@ in { system, compiler, flags, pkgs, hsPkgs, pkgconfPkgs, ... }:
(hsPkgs."warp" or (buildDepError "warp"))
(hsPkgs."warp-tls" or (buildDepError "warp-tls"))
(hsPkgs."stripe-core" or (buildDepError "stripe-core"))
(hsPkgs."stripe-haskell" or (buildDepError "stripe-haskell"))
(hsPkgs."text" or (buildDepError "text"))
(hsPkgs."containers" or (buildDepError "containers"))
(hsPkgs."cryptonite" or (buildDepError "cryptonite"))
......
......@@ -3,6 +3,8 @@
{
packages = ({
"stripe-core" = (((hackage.stripe-core)."2.5.0").revisions).default;
"stripe-haskell" = (((hackage.stripe-haskell)."2.5.0").revisions).default;
"stripe-http-client" = (((hackage.stripe-http-client)."2.5.0").revisions).default;
} // { PaymentServer = ./PaymentServer.nix; }) // {};
};
resolver = "lts-14.1";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment