8d632af36e
Change-Id: Ie7b8c5b983e5b41bffe0748d0047ffcfd82072e8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8759 Reviewed-by: flokli <flokli@flokli.de> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
26 lines
515 B
Nix
26 lines
515 B
Nix
# 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
|
|
];
|
|
}
|