diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-12-26 08:03:16 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-16 01:00:02 +0100 |
commit | 00ca360e9f6982e167eb91f6709ec8179d7b1418 (patch) | |
tree | a42ad9f8518274f2aced2e7b951f87e2bd887354 /gnu | |
parent | cfe6b3642028b47ff35e3412077457eff2c765db (diff) | |
download | guix-00ca360e9f6982e167eb91f6709ec8179d7b1418.tar guix-00ca360e9f6982e167eb91f6709ec8179d7b1418.tar.gz |
gnu: v4l2loopback-linux-module: Unquote arguments.
* gnu/packages/linux.scm (v4l2loopback-linux-module)[arguments]:
Make an unquoted LIST.
Diffstat (limited to 'gnu')
-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 db7d397f4c..7eaefe7701 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1526,7 +1526,7 @@ supported under @file{/sys/class/backlight/}.") "1qi4l6yam8nrlmc3zwkrz9vph0xsj1cgmkqci4652mbpbzigg7vn")))) (build-system linux-module-build-system) (arguments - `(#:tests? #f)) ; no test suite + (list #:tests? #f)) ; no test suite (home-page "https://github.com/umlaeute/v4l2loopback") (synopsis "Linux kernel module to create virtual V4L2 video devices") (description |