mirror of
https://github.com/itme-brain/agent-team.git
synced 2026-05-08 14:50:13 -04:00
- flake.nix: fix gettex → gettext typo, restore codex package - generate.sh: replace ls-based loop with direct glob (word-splitting safe) - README.md: fix AGENTS.md source column (rules/*.md only, not CLAUDE.md)
18 lines
505 B
Nix
18 lines
505 B
Nix
{
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
outputs = { nixpkgs, ... }:
|
|
let
|
|
systems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
|
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f nixpkgs.legacyPackages.${system});
|
|
in {
|
|
devShells = forAllSystems (pkgs: {
|
|
default = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
yq-go
|
|
gettext
|
|
codex
|
|
];
|
|
};
|
|
});
|
|
};
|
|
}
|