mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: less: Add upstream source URI.
* gnu/packages/less.scm (less)[source]: Add the author's site.
This commit is contained in:
parent
df76e0524d
commit
4e94744dd9
1 changed files with 8 additions and 6 deletions
|
@ -1,5 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
|
||||
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -29,12 +30,13 @@ (define-public less
|
|||
(version "530")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnu/less/less-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1qpj2z38c53qmvqn8jaa0kq26q989cfbfjj4y0s6z17l1amr2gsh"))))
|
||||
(method url-fetch)
|
||||
(uri (list (string-append "mirror://gnu/less/less-"
|
||||
version ".tar.gz")
|
||||
(string-append "http://www.greenwoodsoftware.com/less/less-"
|
||||
version ".tar.gz")))
|
||||
(sha256
|
||||
(base32 "1qpj2z38c53qmvqn8jaa0kq26q989cfbfjj4y0s6z17l1amr2gsh"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs `(("ncurses" ,ncurses)))
|
||||
(home-page "https://www.gnu.org/software/less/")
|
||||
|
|
Loading…
Reference in a new issue