This commit is contained in:
gallon 2024-12-22 19:30:09 +08:00
parent c8a3e1b2d7
commit eefb27efd1

View file

@ -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 =
[