gnu: fish: Update to 2.3.1.

* gnu/packages/fish.scm (fish): Update to 2.3.1.
[home-page, source]: Use 'https' in the URL.
This commit is contained in:
Tobias Geerinckx-Rice 2016-07-23 20:08:23 +02:00
parent 389eb3fab7
commit 6a3987b1ae
No known key found for this signature in database
GPG Key ID: 91CCDB9B48541B99
1 changed files with 4 additions and 4 deletions

View File

@ -29,14 +29,14 @@
(define-public fish (define-public fish
(package (package
(name "fish") (name "fish")
(version "2.3.0") (version "2.3.1")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "http://fishshell.com/files/" (uri (string-append "https://fishshell.com/files/"
version "/fish-" version ".tar.gz")) version "/fish-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1ralmp7lavdl0plc09ppm232aqsn0crxx6m3hgaa06ibam3sqawi")) "0r46p64lg6da3v6chsa4gisvl04kd3rpy60yih8r870kbp9wm2ij"))
(modules '((guix build utils))) (modules '((guix build utils)))
;; Don't try to install /etc/fish/config.fish. ;; Don't try to install /etc/fish/config.fish.
(snippet (snippet
@ -61,5 +61,5 @@ has extensive and discoverable help. A special help command gives access to
all the fish documentation in your web browser. Other features include smart all the fish documentation in your web browser. Other features include smart
terminal handling based on terminfo, an easy to search history, and syntax terminal handling based on terminfo, an easy to search history, and syntax
highlighting.") highlighting.")
(home-page "http://fishshell.com/") (home-page "https://fishshell.com/")
(license gpl2))) (license gpl2)))