7b8ec4170a
I'm attempting to be an obedient boy and implement this and future features using TDD. TL;DR: - Defined a few tests - Defined an empty GoogleSignIn module - Defined a Fixtures module to quickly create JWTs to test
20 lines
421 B
Nix
20 lines
421 B
Nix
let
|
|
pkgs = import /home/wpcarro/nixpkgs {};
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
elmPackages.elm
|
|
elmPackages.elm-format
|
|
elmPackages.elm-live
|
|
(haskellPackages.ghcWithPackages (hpkgs: [
|
|
hpkgs.hspec
|
|
hpkgs.servant-server
|
|
hpkgs.aeson
|
|
hpkgs.wai-cors
|
|
hpkgs.warp
|
|
hpkgs.jwt
|
|
hpkgs.unordered-containers
|
|
hpkgs.base64
|
|
hpkgs.http-conduit
|
|
]))
|
|
];
|
|
}
|