mirror of
https://github.com/zed-industries/zed.git
synced 2026-07-31 10:38:41 +00:00
Large change to sandboxing: - fixes a nasty TOCTOU relating to a symlink swap attack, documented in the `sandboxing/README.md` - Adds UI and restrictions when in an untrusted workspace - Adds tests for (soon to be removed) git support --- Release Notes: - N/A or Added/Fixed/Improved ...
14 lines
620 B
Nix
14 lines
620 B
Nix
{
|
|
description = "Private inputs for development purposes. These are used by the top level flake in the `dev` partition, but do not appear in consumers' lock files.";
|
|
|
|
inputs = {
|
|
treefmt-nix.url = "github:numtide/treefmt-nix";
|
|
# Pinned to a nixpkgs revision that packages mdBook 0.4.40, the version the
|
|
# docs require (see `crates/docs_preprocessor/Cargo.toml`). Newer mdBook
|
|
# releases break the docs' double-nested subdirectories.
|
|
nixpkgs-mdbook.url = "github:NixOS/nixpkgs/6ecabf9e3f617aeec1a23a27d0080cab066a9d5b";
|
|
};
|
|
|
|
# This flake is only used for its inputs.
|
|
outputs = { ... }: { };
|
|
}
|