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:
parent
3fdfa14355
commit
f895cb417a
5 changed files with 30 additions and 23 deletions
21
zoo/default.nix
Normal file
21
zoo/default.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue