mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-24 17:28:40 +00:00
nix fmt
This commit is contained in:
parent
c8a3e1b2d7
commit
eefb27efd1
1 changed files with 12 additions and 11 deletions
|
@ -5,19 +5,20 @@ let
|
|||
inherit (pkgs) lib;
|
||||
in
|
||||
pkgs.mkShell rec {
|
||||
packages = [
|
||||
pkgs.clang
|
||||
pkgs.curl
|
||||
pkgs.cmake
|
||||
pkgs.perl
|
||||
pkgs.pkg-config
|
||||
pkgs.protobuf
|
||||
pkgs.rustPlatform.bindgenHook
|
||||
pkgs.rust-analyzer
|
||||
packages =
|
||||
[
|
||||
pkgs.clang
|
||||
pkgs.curl
|
||||
pkgs.cmake
|
||||
pkgs.perl
|
||||
pkgs.pkg-config
|
||||
pkgs.protobuf
|
||||
pkgs.rustPlatform.bindgenHook
|
||||
pkgs.rust-analyzer
|
||||
]
|
||||
++ lib.optionals pkgs.stdenv.hostPlatform.isLinux [
|
||||
pkgs.mold
|
||||
];
|
||||
pkgs.mold
|
||||
];
|
||||
|
||||
buildInputs =
|
||||
[
|
||||
|
|
Loading…
Reference in a new issue