Compare commits

..

4 commits

Author SHA1 Message Date
Vinzenz Schroeter 13571de8e3 version 0.14.1
All checks were successful
Rust / build-gnu-apt (pull_request) Successful in 4m20s
Rust / build-size-gnu-unstable (pull_request) Successful in 1m14s
2025-05-04 13:07:54 +02:00
Vinzenz Schroeter 36bb1c3409 remove musl builds 2025-05-04 13:07:54 +02:00
Vinzenz Schroeter 125f4158f9 build variations in CI to keep track of what works 2025-05-04 13:07:54 +02:00
Vinzenz Schroeter 3ffc96cdbe a bunch of options for the Makefile 2025-05-04 13:07:54 +02:00

View file

@ -36,10 +36,11 @@
buildInputs = with pkgs; [ buildInputs = with pkgs; [
xe xe
xz xz
libgcc #libgcc
musl #glibc
libunwind
pkgsStatic.musl pkgsStatic.musl
# libunwind
]; ];
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [
@ -63,7 +64,8 @@
pkg-config pkg-config
]; ];
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}"; #RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
CARGO = "rustup run nightly cargo";
}; };
} }
); );