diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-04-11 22:11:28 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-04-12 00:13:14 +0200 |
commit | 8ab88f6f5b425b6b460ae7fb5ae29feb1923aad6 (patch) | |
tree | 22cf69ea07e665b1a6f8b6cf9d4bb9792658c5fa /gnu | |
parent | cc86d5254b3f4ddf333c6b5d8026637bfa916a12 (diff) | |
download | patches-8ab88f6f5b425b6b460ae7fb5ae29feb1923aad6.tar patches-8ab88f6f5b425b6b460ae7fb5ae29feb1923aad6.tar.gz |
gnu: xfce4-session: Update to 4.14.2.
* gnu/packages/xfce.scm (xfce4-session): Update to 4.14.2.
[source]: Hard-code NAME.
[description]: Tweak.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xfce.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 36f632b8f5..28a4256ff8 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -563,15 +563,15 @@ your system in categories, so you can quickly find and launch them.") (define-public xfce4-session (package (name "xfce4-session") - (version "4.14.0") + (version "4.14.2") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" - name "/" (version-major+minor version) "/" - name "-" version ".tar.bz2")) + "xfce4-session/" (version-major+minor version) "/" + "xfce4-session-" version ".tar.bz2")) (sha256 (base32 - "0gq4a8yiw58hb4d5dhvprxvzamqfg8qblmiqcw0b97mn9svnvyql")) + "1bwpylcn7x9i301yz45wvkzah9bncv9b44nf4hh9ln4i1jka9qzv")) (modules '((guix build utils))) (snippet '(begin @@ -602,7 +602,7 @@ your system in categories, so you can quickly find and launch them.") (synopsis "Xfce session manager") (description "Session manager for Xfce, it will restore your session on startup and -allows you to shutdown the computer from Xfce.") +allows you to shut down the computer from Xfce.") (license gpl2+))) (define-public xfce4-settings |