atproto repo as vfs
at main 513 B view raw
1{ 2 inputs.parts.url = "github:hercules-ci/flake-parts"; 3 inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; 4 5 outputs = inp: 6 inp.parts.lib.mkFlake {inputs = inp;} { 7 systems = ["x86_64-linux"]; 8 perSystem = { 9 pkgs, 10 ... 11 }: { 12 devShells.default = pkgs.mkShell { 13 name = "atpfs-devshell"; 14 packages = with pkgs; [ 15 rustc rust-analyzer cargo rustfmt 16 wasm-pack wasm-bindgen-cli lld 17 ]; 18 }; 19 }; 20 }; 21}