diff options
author | Andreas Enge <andreas@enge.fr> | 2015-10-03 22:41:59 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2015-10-03 22:41:59 +0200 |
commit | 250ffe4de1186faab65b8eb35d85ec6a2ca0c099 (patch) | |
tree | 6dbf857f915997caf8492f5b14f6419d5cd2e8c9 /gnu | |
parent | 54033a4db61fc76b15f0654ad4b33ac0d7d6a47f (diff) | |
download | guix-250ffe4de1186faab65b8eb35d85ec6a2ca0c099.tar guix-250ffe4de1186faab65b8eb35d85ec6a2ca0c099.tar.gz |
gnu: liblxqt: Fix download location.
* gnu/packages/lxqt.scm (liblxqt)[source]: Fix download location.
[description]: Fix typo.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lxqt.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index e6f8753aa0..5e90cf81ee 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -63,8 +63,8 @@ in Qt.") (origin (method url-fetch) (uri - (string-append "https://github.com/lxde/" name "/releases/download/" - version "/" name "-" version ".tar.xz")) + (string-append "http://downloads.lxqt.org/lxqt/" version "/" + name "-" version ".tar.xz")) (sha256 (base32 "0ljdzqavvy82qwwwnhg2bgbshl2ns0k2lcswxlx1cfc8rcdr9w5l")) @@ -79,7 +79,7 @@ in Qt.") (home-page "http://lxqt.org/") (synopsis "Core utility library for all LXQt components") (description "liblxqt provides the basic libraries shared by the -components of the LxQt desktop environment.") +components of the LXQt desktop environment.") (license lgpl2.1+))) |