Sigrok: Difference between revisions

From NixOS Wiki
Add information about necessary dependencies of sigrok-cli, pulseview and friends
 
mNo edit summary
Line 1: Line 1:
For Sigrok and Sigrok related software such as PulseView to work properly it is necessary to install udev rules that come with the `libsigrok` package. To do so add the following to your config:
For Sigrok and Sigrok related software such as PulseView to work properly it is necessary to install udev rules that come with the <code>libsigrok</code> package. To do so add the following to your config:




<code>services.udev.packages = [ pkgs.libsigrok ];</code>
<code>services.udev.packages = [ pkgs.libsigrok ];</code>

Revision as of 14:41, 21 September 2024

For Sigrok and Sigrok related software such as PulseView to work properly it is necessary to install udev rules that come with the libsigrok package. To do so add the following to your config:


services.udev.packages = [ pkgs.libsigrok ];