* update wasm-bindgen in all wasm projects * //users/wpcarro/website: declare missing dependency on string-conversions. Presumably this was propagated before from some other dependency which got updated now. Change-Id: Ib93de576408974441d532196601e6e53d22cdafe Reviewed-on: https://cl.tvl.fyi/c/depot/+/12770 Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: tazjin <tazjin@tvl.su>
29 lines
482 B
Nix
29 lines
482 B
Nix
{ depot, ... }:
|
|
|
|
depot.users.wpcarro.buildHaskell.program {
|
|
name = "server";
|
|
srcs = builtins.path {
|
|
path = ./.;
|
|
name = "LearnPianoChords-server-src";
|
|
};
|
|
ghcExtensions = [
|
|
"OverloadedStrings"
|
|
"NoImplicitPrelude"
|
|
"RecordWildCards"
|
|
"TypeApplications"
|
|
];
|
|
deps = hpkgs: with hpkgs; [
|
|
string-conversions
|
|
servant-server
|
|
aeson
|
|
wai-cors
|
|
warp
|
|
jwt
|
|
unordered-containers
|
|
base64
|
|
http-conduit
|
|
rio
|
|
envy
|
|
req
|
|
];
|
|
}
|