hyf

Context-aware query service for Radroots
git clone https://radroots.dev/git/hyf.git
Log | Files | Refs | README | LICENSE

flake.nix (593B)


      1 {
      2   description = "Contextual intelligence for the Radroots network";
      3 
      4   inputs = {
      5     nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
      6   };
      7 
      8   outputs = { nixpkgs, ... }:
      9     let
     10       systems = [
     11         "aarch64-darwin"
     12         "x86_64-linux"
     13       ];
     14       forAllSystems = f:
     15         nixpkgs.lib.genAttrs systems (system:
     16           f (import nixpkgs { inherit system; })
     17         );
     18     in {
     19       devShells = forAllSystems (pkgs: {
     20         default = pkgs.mkShell {
     21           buildInputs = [
     22             pkgs.bashInteractive
     23             pkgs.jq
     24           ];
     25         };
     26       });
     27     };
     28 }