diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-02-19 01:00:02 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-02-19 01:00:01 +0100 |
commit | c32f9912e6858d9a74dcc665fe0288c2a0cd53db (patch) | |
tree | 47ab7d948cbd0a76a96b41514c522bffa6a65597 /gnu/packages | |
parent | e701f67246680c81dd111cf7136b936bf7d8718b (diff) | |
download | guix-c32f9912e6858d9a74dcc665fe0288c2a0cd53db.tar.gz |
gnu: xvfb-run: Update to 21.1.7-1.
* gnu/packages/xorg.scm (xvfb-run): Update to 21.1.7-1.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/xorg.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 0d3c8362bc..3093070c91 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -6698,14 +6698,14 @@ box, and a calendar. It uses GTK+, and will match your desktop theme.") (define-public xvfb-run (package (name "xvfb-run") - (version "1.20.11-1") + (version "21.1.7-1") (source (origin (method url-fetch) (uri (string-append "mirror://debian/pool/main/x/xorg-server/" "xorg-server_" version ".diff.gz")) (sha256 - (base32 "0hq8a2rw2ginxsifrpj3rsf2shxl69ylkc1650ij5vwjhxdr82hh")))) + (base32 "1073m4gzn8yv9kn70fbyq8a2xckgz0wljjr2w7i2bsrg767h29gd")))) (build-system gnu-build-system) (arguments (list @@ -6771,7 +6771,7 @@ 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 (list license:x11 ; the script - license:gpl2+)))) ; the man page + license:gpl2+)))) ; the man page (define-public setroot (package |