build/nix: Put runtime deps in rpath

This commit is contained in:
Akshay Mankar 2024-04-27 15:11:42 +02:00
parent 19b3e57d98
commit 30ab2d3e6e
Signed by untrusted user: axeman
GPG key ID: CA08F3AB62369B89

View file

@ -1,20 +1,48 @@
{
rustPlatform
, pkg-config
, alsa-lib
, libcap
rustPlatform,
pkg-config,
alsa-lib,
libcap,
libxkbcommon,
wayland,
udev,
vulkan-loader,
xorg,
lib,
}:
rustPlatform.buildRustPackage rec {
src = ../../..;
pname = "outfly";
version = "0.8.0";
version = "0.8.1";
cargoLock = {
lockFile = "${src}/Cargo.lock";
};
nativeBuildInputs = [ pkg-config ];
buildNoDefaultFeatures = true;
buildFeatures = [
"x11"
"embed_assets"
];
buildInputs = [
alsa-lib
libcap
#libgcc
];
postFixup =
let
runtimeDeps = [
vulkan-loader
wayland
libxkbcommon
xorg.libX11
xorg.libXrandr
xorg.libXi
xorg.libXcursor
];
libPath = lib.makeLibraryPath runtimeDeps;
in
''
patchelf $out/bin/outfly \
--add-rpath ${libPath}
'';
}