tvl-depot/website/sandbox/shift-time/default.nix
William Carroll 5fd79ce0ff Support parsing second shifts
Parse inputs like -10s into 10 second shifts back in time.
2020-08-20 11:26:30 +01:00

28 lines
479 B
Nix

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
];
}