PluralKit/shell.nix

13 lines
178 B
Nix
Raw Normal View History

2024-08-04 07:25:02 +09:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
packages = with pkgs; [
cargo rust-analyzer rustfmt
gcc
protobuf
dotnet-sdk_6
go
nodejs yarn
];
}