emerg: clear commits due to fwd server leak

This commit is contained in:
Xory 2025-10-22 20:40:10 +03:00
commit 66fa3474b2
12 changed files with 1081 additions and 0 deletions

14
shell.nix Normal file
View file

@ -0,0 +1,14 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
pkgsCross.mingwW64.buildPackages.gcc
pkgsCross.mingwW64.buildPackages.glibc
rustup
libpthread-stubs
pkg-config
openssl
];
CARGO_TARGET_X86_64_PC_WINDOWS_GNU_RUSTFLAGS = "-L native=${pkgs.pkgsCross.mingwW64.windows.pthreads}/lib";
}