Compare commits

...

3 Commits

Author SHA1 Message Date
Rph :3
762d481707
remove flake utils 2025-04-03 23:03:53 +02:00
Rph :3
39344fe5fa
mac flake 2025-04-03 23:03:37 +02:00
Rph :3
da43c4be97
fix windows 2025-04-03 23:03:33 +02:00
3 changed files with 72 additions and 31 deletions

5
flake.lock generated
View File

@ -13,9 +13,8 @@
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
"id": "flake-utils",
"type": "indirect"
}
},
"nixpkgs": {

View File

@ -2,34 +2,76 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
rust-overlay.url = "github:oxalica/rust-overlay";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils, rust-overlay , ...}:
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";
};
}
);
let
overlays = [ (import rust-overlay ) ];
in {
packages."x86_64-linux".default =
let
pkgs = import nixpkgs {
system = "x86_64-linux";
inherit overlays;
};
native-deps = with pkgs; [
pkg-config pipewire lld clang libclang alsa-lib openssl zlib libxkbcommon libGL wayland mangohud
];
in
pkgs.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 = (pkgs.lib.makeLibraryPath native-deps);
CARGO_TARGET_X86_64_PC_WINDOWS_GNU_RUSTFLAGS = "-L native=${pkgs.pkgsCross.mingwW64.windows.pthreads}/lib";
};
packages."aarch64-darwin".default =
let
pkgs = import nixpkgs {
system = "aarch64-darwin";
inherit overlays;
};
native-deps = with pkgs; [];
in
pkgs.mkShell {
buildInputs = with pkgs; [
(rust-bin.stable.latest.default.override {
extensions = [ "rust-src" ];
targets = ["aarch64-apple-darwin" ];
})
cargo-bloat
] ++ 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";
# };
# }
# );
}

View File

@ -18,7 +18,7 @@ fn get_steam_root() -> anyhow::Result<PathBuf> {
fn get_steam_root() -> anyhow::Result<PathBuf> {
use registry::{self, Security, Data};
let key = registry::Hive::LocalMachine.open(r"\SOFTWARE\Wow6432Node\Valve\Steam", Security::Read)?;
let key = registry::Hive::LocalMachine.open(r"SOFTWARE\Wow6432Node\Valve\Steam", Security::Read)?;
let value = match key.value("InstallPath")? {
Data::String(s) => Some(s.to_string_lossy()),
Data::ExpandString(s) => Some(s.to_string_lossy()),