Compare commits
No commits in common. "e9d3b32f57674e06db1ebf0762bfd736e1f5ea31" and "0da50ed7dc2f715cf6791c318494fa03af50417a" have entirely different histories.
e9d3b32f57
...
0da50ed7dc
|
@ -55,6 +55,7 @@
|
||||||
};
|
};
|
||||||
nativeBuildInputs = with pkgs; [
|
nativeBuildInputs = with pkgs; [
|
||||||
pkg-config
|
pkg-config
|
||||||
|
libclang
|
||||||
rustPlatform.bindgenHook
|
rustPlatform.bindgenHook
|
||||||
];
|
];
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
|
@ -63,13 +64,14 @@
|
||||||
[
|
[
|
||||||
xe
|
xe
|
||||||
xz
|
xz
|
||||||
ffmpeg-headless
|
clang
|
||||||
]
|
]
|
||||||
++ lib.optionals pkgs.stdenv.isLinux (
|
++ lib.optionals pkgs.stdenv.isLinux (
|
||||||
with pkgs;
|
with pkgs;
|
||||||
[
|
[
|
||||||
dbus
|
dbus
|
||||||
pipewire
|
pipewire
|
||||||
|
libclang
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -103,6 +105,8 @@
|
||||||
|
|
||||||
cargo-flamegraph
|
cargo-flamegraph
|
||||||
gdb
|
gdb
|
||||||
|
|
||||||
|
ffmpeg-headless
|
||||||
];
|
];
|
||||||
LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath (builtins.concatMap (d: d.buildInputs) inputsFrom)}";
|
LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath (builtins.concatMap (d: d.buildInputs) inputsFrom)}";
|
||||||
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
|
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
|
||||||
|
|
Loading…
Reference in a new issue