diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-12-26 07:54:40 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-16 01:00:02 +0100 |
commit | 1ac3f0785efe3b99a0fb4a25e57ce9d5aaa9dc7c (patch) | |
tree | d7daf5aa8d8d37a582d6c0b5e53199968f2f69ff /gnu/packages/linux.scm | |
parent | 549ef6a2bc3191773c2ec5633b546aa43ceebc80 (diff) | |
download | guix-1ac3f0785efe3b99a0fb4a25e57ce9d5aaa9dc7c.tar guix-1ac3f0785efe3b99a0fb4a25e57ce9d5aaa9dc7c.tar.gz |
gnu: vhba-module: Unquote arguments.
* gnu/packages/linux.scm (vhba-module)[arguments]:
Make an unquoted LIST.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 8e8dbc4e74..6c095b84f9 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1432,7 +1432,7 @@ RTL8812AU, RTL8821AU, and RTL8814AU chips.") (base32 "1dkprnnya0i8121p7ip4g8cww99drk7fzbwcxx65x02jqk0siibj")))) (build-system linux-module-build-system) (arguments - `(#:tests? #f)) ; no test suite + (list #:tests? #f)) ; no test suite (home-page "https://cdemu.sourceforge.io/") (synopsis "Linux kernel module that emulates SCSI devices") (description |