!FBuJyWXTGcGtHTPphC:nixos.org

Nix Rust

693 Members
Rust156 Servers

Load older messages


SenderMessageTime
9 Jan 2026
@k900:0upti.meK900 buildInputs is suboptimal 15:44:01
@k900:0upti.meK900You probably want only the things it dlopens15:44:08
@magnetophon:matrix.orgmagnetophonok, thanks. I'll see if it runs with this (already building), and then minimize it.15:44:54
@magnetophon:matrix.orgmagnetophon

I still get:

❯ radiance

thread 'main' (2015441) panicked at /build/cargo-vendor-dir/xkbcommon-dl-0.4.2/src/x11.rs:59:28:
Library libxkbcommon-x11.so could not be loaded.
stack backtrace:
   0: __rustc::rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::option::expect_failed
   3: xkbcommon_dl::x11::xkbcommon_x11_handle
   4: std::sync::poison::once::Once::call_once_force::{{closure}}
   5: std::sys::sync::once::futex::Once::call
   6: std::sync::once_lock::OnceLock<T>::initialize
   7: winit::platform_impl::linux::common::xkb::Context::from_x11_xkb
   8: winit::platform_impl::linux::EventLoop<T>::new
   9: radiance::main
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

Any ideas?

15:49:40
@k900:0upti.meK900 And libxkbcommon is in your buildInputs? 15:50:24
@magnetophon:matrix.orgmagnetophonThis is with this snippet, so AFAIK all my buildInputs are in the rpath now.15:52:16
@k900:0upti.meK900 But what is in your buildInputs? 15:53:02
@magnetophon:matrix.orgmagnetophon
  buildInputs =
    [
      mpv-unwrapped
      vulkan-loader
      libxkbcommon
    ]
    ++ lib.optionals stdenv.isLinux [
      alsa-lib
      wayland

      # X11 / XCB stack (required by winit + xkbcommon-dl)
      xorg.libX11
      xorg.libXcursor
      xorg.libXi
      xorg.libXrandr
      xorg.libXinerama
      xorg.libXpresent
      xorg.libXfixes
      xorg.libXext
      # xorg.libXss
      xorg.libxcb
      # xorg.libX11-xcb
    ]
    ++ lib.optionals stdenv.isDarwin [
      darwin.apple_sdk.frameworks.AppKit
      darwin.apple_sdk.frameworks.CoreGraphics
      darwin.apple_sdk.frameworks.CoreServices
      darwin.apple_sdk.frameworks.Foundation
      darwin.apple_sdk.frameworks.Metal
      darwin.apple_sdk.frameworks.QuartzCore
    ];
15:53:35
@k900:0upti.meK900Hmm weird15:54:29
@k900:0upti.meK900 What does patchelf --print-rpath $out/bin/radiance say? 15:54:38
@magnetophon:matrix.orgmagnetophonpatchelf --print-rpath /nix/store/yhg16w5915bbvpadk8ibxj9x8kria7pw-radiance-0.7.0/bin/radiance /nix/store/5vwc8q3c7hn7s01qbpsicv4zjk3p2nci-mpv-0.41.0/lib:/nix/store/f0mf3rlv29ql40qx36kqd2jzabd1m0s0-alsa-lib-1.2.14/lib:/nix/store/ii3ybky5dqjikcrw7vdnh1j76ssy0ycm-libx11-1.8.12/lib15:55:40
@magnetophon:matrix.orgmagnetophonhmm, so it's missing a lot, right? 15:56:02
@k900:0upti.meK900OK so that's not in there15:56:03
@k900:0upti.meK900That's interesting15:56:07
@k900:0upti.meK900 Oh, you probably need to also --add-needed it 15:56:13
@magnetophon:matrix.orgmagnetophon

I did:

  preFixup = lib.optionalString stdenv.hostPlatform.isLinux ''
    patchelf \
      --set-rpath --add-needed "${lib.makeLibraryPath buildInputs}:$out/lib" \
      $out/bin/radiance
  '';

And now I get:

radiance> Running phase: fixupPhase
radiance> patchelf: getting info about '/nix/store/5vwc8q3c7hn7s01qbpsicv4zjk3p2nci-mpv-0.41.0/lib:/nix/store/jzng5i2xwsdlf3h60a5s6qzr2808c9zc-vulkan-loader-1.4.335.0/lib:/nix/store/91mg839gbvgz1svzlh1jvz0pqvx7ylwh-libxkbcommon-1.11.0/lib:/nix/store/f0mf3rlv29ql40qx36kqd2jzabd1m0s0-alsa-lib-1.2.14/lib:/nix/store/7m6x6b4ljrkmkbhvbxdcacpraxj49xkj-wayland-1.24.0/lib:/nix/store/ii3ybky5dqjikcrw7vdnh1j76ssy0ycm-libx11-1.8.12/lib:/nix/store/bb5xxw11ndww7iivcmdpxga9n1da24vg-libxcursor-1.2.3/lib:/nix/store/x1f9a0qsj6a1y5nf178naagm2vbxnazc-libxi-1.8.2/lib:/nix/store/dyn0y5clf5b556yqwmj4841h43hz75p6-libxrandr-1.5.4/lib:/nix/store/0r6d7iw0q9wgxxj28zy87n1gjwvk0klp-libxinerama-1.1.5/lib:/nix/store/hlkf0rilmbwi8hvbvc9rswglmsc1mpq5-libxpresent-1.0.2/lib:/nix/store/2dac9gfiim278y2c6mxrklpzzfka7ra1-libxfixes-6.0.2/lib:/nix/store/zshby6nalhw4mvap0rr97hv042808c2k-libxext-1.3.6/lib:/nix/store/m0jzvlr5gl7zvdn0fr7c09mjwx65fx58-libxcb-1.17.0/lib:/nix/store/d3dgbv5q78fdcswpznc20ipnjdna4mcp-radiance-0.7.0/lib': No such file or directory
16:03:18
@k900:0upti.meK900Not like that16:03:33
@k900:0upti.meK900 You want --add-rpath <that stuff> --add-needed libxkbcommon-x11.so 16:03:48
@magnetophon:matrix.orgmagnetophonah, thanks16:04:09
@magnetophon:matrix.orgmagnetophonYES! It runs now! Thank you so much! Next step: minimize rpath. :) 16:14:49
@ralith:ralith.comRalithhas anyone worked out why rustc started stripping rpath by default some time in the last year or so?20:50:31
10 Jan 2026
@catbrained:tchncs.decatbrained (she/her) changed their display name from catbrained to catbrained (she/her).00:28:18
@eihqnh:mozilla.orgeihqnh joined the room.04:58:03
@eihqnh:mozilla.orgeihqnh set a profile picture.05:04:37
@spectabilis:4d2.orgspectabilis changed their profile picture.06:42:11
29 Oct 2021
@grahamc:nixos.org@grahamc:nixos.org set the history visibility to "world_readable".19:57:43
@grahamc:nixos.org@grahamc:nixos.org changed the room name to "" from "".19:57:43
@grahamc:nixos.org@grahamc:nixos.org changed the room topic to "" from "".19:57:43
@server_stats:nordgedanken.devServer Stats Discoverer (traveler bot) joined the room.19:58:21
@voyager:t2bot.ioMatrix Traveler (bot) joined the room.19:59:14

Show newer messages


Back to Room ListRoom Version: 6