diff options
author | Andreas Enge <andreas@enge.fr> | 2015-10-03 17:59:07 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2015-10-03 19:45:23 +0200 |
commit | c9f6938033eaa4ed4b0a4b8209342ea9de839afc (patch) | |
tree | 5cc89239e9a778a5783c34f34043188b0930607f /gnu/packages/lxqt.scm | |
parent | 293ff8b2f3dc197b5350768f1ee49871069ed113 (diff) | |
download | guix-c9f6938033eaa4ed4b0a4b8209342ea9de839afc.tar guix-c9f6938033eaa4ed4b0a4b8209342ea9de839afc.tar.gz |
gnu: liblxqt: Fix download location.
* gnu/packages/lxqt.scm (liblxqt)[source]: Use the .tar.xz release
exclusively; drop the alternative URI for .tar.gz and correct the hash.
Diffstat (limited to 'gnu/packages/lxqt.scm')
-rw-r--r-- | gnu/packages/lxqt.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index e7ed75c77d..064f8c4f81 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -65,13 +65,9 @@ in Qt.") (uri (string-append "https://github.com/lxde/" name "/releases/download/" version "/" name "-" version ".tar.xz")) - (uri - (string-append "https://github.com/lxde/" name "/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0mbl3qc0yfgfsndqrw8vg8k5irsy0pg2wrad8nwv0aphphd4n7rg")) + "0ljdzqavvy82qwwwnhg2bgbshl2ns0k2lcswxlx1cfc8rcdr9w5l")) (patches (map search-patch '("liblxqt-include.patch"))))) (build-system cmake-build-system) (arguments |