mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: gnucash-docs: Fix source URI.
The source URI was renamed from "gnucash-docs-3.4-1.tar.gz" to "gnucash-docs-3.4a.tar.gz". The content is identical since the hash hasn't changed. * gnu/packages/gnucash.scm (gnucash-docs)[source]: Update URI to match upstream change.
This commit is contained in:
parent
5ccf3dd0a1
commit
ae283c184a
1 changed files with 3 additions and 6 deletions
|
@ -4,6 +4,7 @@
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2017 Chris Marusich <cmmarusich@gmail.com>
|
;;; Copyright © 2017 Chris Marusich <cmmarusich@gmail.com>
|
||||||
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -197,7 +198,7 @@ (define-public gnucash
|
||||||
;; This package is not public, since we use it to build the "doc" output of
|
;; This package is not public, since we use it to build the "doc" output of
|
||||||
;; the gnucash package (see above). It would be confusing if it were public.
|
;; the gnucash package (see above). It would be confusing if it were public.
|
||||||
(define gnucash-docs
|
(define gnucash-docs
|
||||||
(let ((revision "1")) ;set to the empty string when no revision
|
(let ((revision "a")) ;set to the empty string when no revision
|
||||||
(package
|
(package
|
||||||
(name "gnucash-docs")
|
(name "gnucash-docs")
|
||||||
(version (package-version gnucash))
|
(version (package-version gnucash))
|
||||||
|
@ -205,11 +206,7 @@ (define gnucash-docs
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/gnucash/gnucash%20%28stable%29/"
|
(uri (string-append "mirror://sourceforge/gnucash/gnucash%20%28stable%29/"
|
||||||
version "/gnucash-docs-" version
|
version "/gnucash-docs-" version revision ".tar.gz"))
|
||||||
(if (string-null? revision)
|
|
||||||
""
|
|
||||||
(string-append "-" revision))
|
|
||||||
".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0bgjxpxgk7hy8ihn1kvd8p6vv191q5md2hz6jb9mqc4aykpvdlq7"))))
|
"0bgjxpxgk7hy8ihn1kvd8p6vv191q5md2hz6jb9mqc4aykpvdlq7"))))
|
||||||
|
|
Loading…
Reference in a new issue