this repo has no description
1{
2 description = "atproto github";
3
4 inputs.nixpkgs.url = "github:nixos/nixpkgs";
5
6 outputs =
7 { self
8 , nixpkgs
9 ,
10 }:
11 let
12 supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
13 forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
14 nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; });
15 in
16 {
17 defaultPackage = forAllSystems (system: self.packages.${system}.legit);
18 devShells = forAllSystems (system:
19 let
20 pkgs = nixpkgsFor.${system};
21 in
22 {
23 default = pkgs.mkShell {
24 nativeBuildInputs = with pkgs; [
25 go
26 air
27 ];
28 };
29 });
30 };
31}