diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-03-09 16:17:56 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-03-09 16:17:56 +0100 |
commit | b1cabedd28b92324259875fc52ca5d52d411a026 (patch) | |
tree | 6f6ee2ab9d6aad6552d645bda671899783930af9 /gnu/packages/xorg.scm | |
parent | 973c6f18eb5ac6ee76f742f06ba1589759f4d4bd (diff) | |
download | guix-b1cabedd28b92324259875fc52ca5d52d411a026.tar guix-b1cabedd28b92324259875fc52ca5d52d411a026.tar.gz |
gnu: xvfb-run: Fix syntax error.
Error introduced in 07f77812c44aa3b7a6b963613b783da56110d2f0.
* gnu/packages/xorg.scm (xvfb-run)[license]: Fix syntax.
Diffstat (limited to 'gnu/packages/xorg.scm')
-rw-r--r-- | gnu/packages/xorg.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 2f740ecbc2..92ae6a824b 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -6839,5 +6839,5 @@ within a virtual X server environment. It sets up an X authority file or uses an existing user-specified one, writes a cookie to it, and then starts the @command{Xvfb} X server as a background process. It also takes care of killing the server and cleaning up before returning the exit status of the command.") - (license license:x11 ; the script - license:gpl2+))) ; the man page + (license (list license:x11 ; the script + license:gpl2+)))) ; the man page |