about summary refs log tree commit diff
path: root/website/sandbox/shift-time/default.nix
blob: 356c250c71344da989646e39c8ab735aa7a80471 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
let
  briefcase = import /home/wpcarro/briefcase {};
in briefcase.buildHaskell.program {
  name = "shift-time";
  srcs = builtins.path {
    path = ./.;
    name = "shift-time-src";
  };
  ghcExtensions = [
    "OverloadedStrings"
    "NoImplicitPrelude"
    "RecordWildCards"
    "TypeApplications"
  ];
  deps = hpkgs: with hpkgs; [
    servant-server
    aeson
    wai-cors
    warp
    jwt
    unordered-containers
    base64
    http-conduit
    rio
    envy
    req
  ];
}