claux 20260416.0.1

Terminal AI coding assistant with tool execution
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs ? import <nixpkgs> {} }:

let
  rust-overlay = import (builtins.fetchTarball
    "https://github.com/oxalica/rust-overlay/archive/master.tar.gz");
  pkgs' = import <nixpkgs> { overlays = [ rust-overlay ]; };
  rust = pkgs'.rust-bin.stable."1.88.0".default;
in
pkgs'.mkShell {
  buildInputs = with pkgs'; [
    rust
    rust-analyzer
    pkg-config
    openssl
  ];

  RUST_BACKTRACE = 1;
}