A tool for conquest of ATProto lexicons. https://jsr.io/@hotsocket/lexiconqueror
1{
2 inputs = {
3 nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
4 flake-utils.url = "github:numtide/flake-utils";
5 };
6 outputs = { self, nixpkgs, flake-utils }:
7 flake-utils.lib.eachDefaultSystem (system:
8 let
9 pkgs = import nixpkgs { inherit system; };
10 in
11 {
12 devShells.default = pkgs.mkShell {
13 buildInputs = with pkgs; [
14 git
15 deno
16 ];
17 };
18 });
19}