2023-02-01 14:27:41 +01:00
|
|
|
# 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";
|
2023-06-13 12:32:41 +02:00
|
|
|
packages = with pkgs; [
|
|
|
|
buf-language-server
|
|
|
|
cargo
|
|
|
|
clippy
|
|
|
|
evans
|
|
|
|
fuse
|
|
|
|
pkg-config
|
|
|
|
protobuf
|
|
|
|
rust-analyzer
|
|
|
|
rustc
|
|
|
|
rustfmt
|
2023-02-01 14:27:41 +01:00
|
|
|
];
|
|
|
|
}
|