about summary refs log tree commit diff
path: root/views/tvix/default.nix
blob: feee0f222240f50bf678a08c235a09eef2e230bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Externally importable TVL depot stack. This is intended to be called
# with a supplied package set, otherwise the package set currently in
# use by the TVL depot will be used.
#
{ pkgs ? (import ./nixpkgs {
    depotOverlays = false;
    depot.third_party.sources = import ./sources { };
  })
, ...
}:

pkgs.mkShell {
  name = "tvix-rust-dev-env";
  packages = with pkgs; [
    buf-language-server
    cargo
    clippy
    evans
    fuse
    pkg-config
    protobuf
    rust-analyzer
    rustc
    rustfmt
  ];
}