acquire key

This commit is contained in:
Rph :3
2025-04-15 18:08:34 +02:00
parent 762d481707
commit 772f1c634c
9 changed files with 395 additions and 285 deletions

View File

@@ -48,30 +48,4 @@
] ++ native-deps;
};
};
# flake-utils.lib.eachDefaultSystem (system:
# let
# overlays = [ (import rust-overlay) ];
# pkgs = import nixpkgs {
# inherit system overlays;
# };
# native-deps = with pkgs; [
# pkg-config pipewire lld clang libclang alsa-lib openssl zlib libxkbcommon libGL wayland mangohud
# ];
# in
# with pkgs;
# {
# devShells.default = mkShell {
# buildInputs = with pkgs; [
# (rust-bin.stable.latest.default.override {
# extensions = [ "rust-src" ];
# targets = ["x86_64-unknown-linux-gnu" "x86_64-pc-windows-gnu"];
# })
# cargo-bloat
# pkgs.pkgsCross.mingwW64.buildPackages.gcc
# ] ++ native-deps;
# LD_LIBRARY_PATH = (lib.makeLibraryPath native-deps);
# CARGO_TARGET_X86_64_PC_WINDOWS_GNU_RUSTFLAGS = "-L native=${pkgs.pkgsCross.mingwW64.windows.pthreads}/lib";
# };
# }
# );
}