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!
This commit is contained in:
William Carroll 2020-08-13 22:22:39 +01:00
parent 3fdfa14355
commit f895cb417a
5 changed files with 30 additions and 23 deletions

21
zoo/default.nix Normal file
View file

@ -0,0 +1,21 @@
{ 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
];
}