mirror of
https://github.com/exo-explore/exo.git
synced 2025-12-23 22:27:50 -05:00
30 lines
686 B
Nix
30 lines
686 B
Nix
{
|
|
description = "The development environment for Exo";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { self, nixpkgs }:
|
|
let
|
|
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
|
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
|
in
|
|
{
|
|
devShells = forAllSystems (system:
|
|
let
|
|
pkgs = import nixpkgs { inherit system; };
|
|
in
|
|
{
|
|
default = pkgs.mkShell {
|
|
packages = [
|
|
pkgs.python313
|
|
pkgs.uv
|
|
pkgs.just
|
|
pkgs.protobuf
|
|
];
|
|
};
|
|
}
|
|
);
|
|
};
|
|
} |