ATProto app badge generator for static web pages colddark.world/tools/badger/index.html
atproto web-app vanilla-js web-components oauth
at trunk 37 lines 783 B view raw
1{ 2 description = "A Nix-flake-based Deno development environment"; 3 4 inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1"; # unstable Nixpkgs 5 6 outputs = 7 { self, ... }@inputs: 8 9 let 10 supportedSystems = [ 11 "x86_64-linux" 12 "aarch64-linux" 13 "x86_64-darwin" 14 "aarch64-darwin" 15 ]; 16 forEachSupportedSystem = 17 f: 18 inputs.nixpkgs.lib.genAttrs supportedSystems ( 19 system: 20 f { 21 pkgs = import inputs.nixpkgs { inherit system; }; 22 } 23 ); 24 in 25 { 26 devShells = forEachSupportedSystem ( 27 { pkgs }: 28 { 29 default = pkgs.mkShellNoCC { 30 packages = with pkgs; [ 31 deno 32 ]; 33 }; 34 } 35 ); 36 }; 37}