diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-24 20:54:20 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-24 21:29:22 +0100 |
commit | 063bc5f8996690e4fb4d79ad05afe9ba58b67b74 (patch) | |
tree | ed42d3c3a6ca04b6b143b3992f0f9f67e9851d57 | |
parent | bc9c3dc31e32e16a129fd606bafd405ae1ef9fcd (diff) | |
download | patches-063bc5f8996690e4fb4d79ad05afe9ba58b67b74.tar patches-063bc5f8996690e4fb4d79ad05afe9ba58b67b74.tar.gz |
gnu: screengrab: Don't use NAME in source URI.
* gnu/packages/lxqt.scm (screengrab)[source]: Hard-code NAME.
-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 a37d2a1dd5..b6f86d8ea7 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2016 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2017 Nils Gillmann <ng0@n0.is> -;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018 Meiyo Peng <meiyo.peng@gmail.com> ;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> ;;; @@ -1149,8 +1149,8 @@ QTermWidget.") (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/screengrab/releases/download/" + version "/screengrab-" version ".tar.xz")) (sha256 (base32 "17y8rsx9fixvxv2byq8d6c01vry10nv07f8jy85vz7zp4f0rgzz3")))) (build-system cmake-build-system) |