diff options
author | Brice Waegeneire <brice@waegenei.re> | 2020-05-13 10:46:03 +0200 |
---|---|---|
committer | Brice Waegeneire <brice@waegenei.re> | 2020-05-14 15:54:34 +0200 |
commit | 32290b2c359b91e98a125f90d05396976169c239 (patch) | |
tree | 0e03fddcbef2e742ec9004dbc9d9ba0172103e11 /gnu | |
parent | aee7d000f81685a6383189d3b8f173dc4ff0a670 (diff) | |
download | guix-32290b2c359b91e98a125f90d05396976169c239.tar.gz guix-32290b2c359b91e98a125f90d05396976169c239.zip |
gnu: hackrf: Simplify installation instructions.
* gnu/packages/radio.scm (hackrf)[description]: Replace
'modify-services' snippet with 'udev-rules-service'.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/radio.scm | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 1e50be1bcc..6a919548f0 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -741,20 +741,10 @@ for correctness.") (synopsis "User-space library and utilities for HackRF SDR") (description "Command line utilities and a C library for controlling the HackRF -Software Defined Radio (SDR) over USB. Installing this package installs -the userspace hackrf utilities and C library. To install the hackrf -udev rules, you must add this package as a system service via -modify-services. E.g.: - -@lisp -(services - (modify-services - %desktop-services - (udev-service-type config => - (udev-configuration (inherit config) - (rules (cons hackrf - (udev-configuration-rules config))))))) -@end lisp") +Software Defined Radio (SDR) over USB. Installing this package installs the +userspace hackrf utilities and C library. To install the hackrf udev rules, +you must extend 'udev-service-type' with this package. E.g.: +@code{(udev-rules-service 'hackrf hackrf #:groups '(\"dialout\"))}.") (license license:gpl2)))) (define-public hamlib |