flora is a fast and secure runtime that lets you write discord bots for your servers, with a rich TypeScript SDK, without worrying about running infrastructure. [mirror]
1{
2 inputs = {
3 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
4 flake-utils.url = "github:numtide/flake-utils";
5 };
6
7 outputs = { self, nixpkgs, flake-utils }:
8 flake-utils.lib.eachDefaultSystem (system:
9 let
10 pkgs = nixpkgs.legacyPackages.${system};
11 in
12 {
13 devShells.default = pkgs.mkShell {
14 buildInputs = with pkgs; [
15 rustc
16 cargo
17 rustfmt
18 clippy
19 sqlx-cli
20 ];
21 };
22 }
23 );
24}