lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

create $out/sbin symlink to $out/bin

looks like common practice is to put a $out/sbin symlink to $out/bin. the `fxload` command was not available if only puts on $out/sbin. This will fix it. The real issue I observed was that there was no `/run/current-system/sw/sbin` on $PATH but i think there is a fundamental reason why it doesn’t exist hence this patch until i learn more.

SnIcK 1a6ed8a3 00ae4c7f

+2 -2
+2 -2
pkgs/os-specific/linux/fxload/default.nix
··· 15 15 16 16 # fxload binary exist inside the `examples/bin` directory of `libusb1` 17 17 postFixup = '' 18 - mkdir -p $out/sbin 19 - ln -s ${passthru.libusb}/examples/bin/fxload $out/sbin/fxload 18 + mkdir -p $out/bin 19 + ln -s ${passthru.libusb}/examples/bin/fxload $out/bin/fxload 20 20 ''; 21 21 22 22 passthru.libusb = libusb1.override { withExamples = true; };