diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-25 01:14:16 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-25 02:10:54 +0100 |
commit | 769921fef266323331ecb0b13d8c3a24ba0f4004 (patch) | |
tree | 4746532b5f4b266e28ab6b03f54c5bd4cae86af5 /gnu/packages/lxqt.scm | |
parent | ad0b91bde0143a08a3a330140a59c9cf14835efc (diff) | |
download | patches-769921fef266323331ecb0b13d8c3a24ba0f4004.tar patches-769921fef266323331ecb0b13d8c3a24ba0f4004.tar.gz |
gnu: lxqt-build-tools: Don't use NAME in source URI.
* gnu/packages/lxqt.scm (lxqt-build-tools)[source]: Hard-code NAME.
Diffstat (limited to 'gnu/packages/lxqt.scm')
-rw-r--r-- | gnu/packages/lxqt.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index b6f86d8ea7..978e59f203 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -128,8 +128,9 @@ to statistics about the system on which it's run.") (source (origin (method url-fetch) - (uri (string-append "https://github.com/lxqt/" name "/releases/download/" - version "/" name "-" version ".tar.xz")) + (uri (string-append "https://github.com/lxqt/lxqt-build-tools/releases" + "/download/" version + "/lxqt-build-tools-" version ".tar.xz")) (sha256 (base32 "13b5x26p6ycnwzlgg1cgvlc88wjrjmlb3snrrmzh0xgh9h6hhvd6")))) (build-system cmake-build-system) |