tvl-depot/zoo/default.nix
William Carroll f895cb417a Move shift-time into top-level //zoo
I'm still unsure whether or not this is a good idea, but experimenting is a good
way to find out!
2020-08-20 11:26:31 +01:00

21 lines
339 B
Nix

{ briefcase, ... }:
briefcase.buildHaskell.program {
name = "zoo";
srcs = builtins.path {
path = ./.;
name = "zoo-src";
};
ghcExtensions = [
"OverloadedStrings"
"NoImplicitPrelude"
"RecordWildCards"
"TypeApplications"
];
deps = hpkgs: with hpkgs; [
servant-server
aeson
warp
rio
];
}