Compare commits

..

2 commits

Author SHA1 Message Date
vinzenz e9d3b32f57 Merge pull request 'fix flake' (#4) from fix-flake into main
All checks were successful
Rust / build (push) Successful in 9m3s
Reviewed-on: #4
2025-05-10 10:33:21 +02:00
Vinzenz Schroeter 30b1711b88 fix flake
All checks were successful
Rust / build (pull_request) Successful in 9m0s
2025-05-10 10:21:39 +02:00

View file

@ -55,7 +55,6 @@
};
nativeBuildInputs = with pkgs; [
pkg-config
libclang
rustPlatform.bindgenHook
];
strictDeps = true;
@ -64,14 +63,13 @@
[
xe
xz
clang
ffmpeg-headless
]
++ lib.optionals pkgs.stdenv.isLinux (
with pkgs;
[
dbus
pipewire
libclang
]
);
};
@ -105,8 +103,6 @@
cargo-flamegraph
gdb
ffmpeg-headless
];
LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath (builtins.concatMap (d: d.buildInputs) inputsFrom)}";
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";