mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
14 lines
225 B
Nix
14 lines
225 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShellNoCC {
|
|
packages = with pkgs; [
|
|
cargo rust-analyzer rustfmt
|
|
gcc
|
|
protobuf
|
|
dotnet-sdk_6
|
|
go
|
|
nodejs yarn
|
|
];
|
|
|
|
NODE_OPTIONS = "--openssl-legacy-provider";
|
|
}
|