gnu: abduco: Use HTTPS home page and source URI.

* gnu/packages/abduco.scm (abduco)[home-page]: Use HTTPS URI.
[source]: Likewise.
This commit is contained in:
Björn Höfling 2020-02-28 21:07:10 +01:00
parent 1413891250
commit 7593e5d0f8
No known key found for this signature in database
GPG key ID: BF286CB6593E5FFD

View file

@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015, 2016 Leo Famulari <leo@famulari.name> ;;; Copyright © 2015, 2016 Leo Famulari <leo@famulari.name>
;;; Copyright © 2020 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -29,7 +30,7 @@ (define-public abduco
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
"http://www.brain-dump.org/projects/abduco/abduco-" "https://www.brain-dump.org/projects/abduco/abduco-"
version ".tar.gz")) version ".tar.gz"))
(sha256 (sha256
(base32 (base32
@ -45,5 +46,5 @@ (define-public abduco
(description "abduco provides session management i.e. it allows programs to (description "abduco provides session management i.e. it allows programs to
be run independently from their controlling terminal. That is, programs can be run independently from their controlling terminal. That is, programs can
be detached---run in the background---and then later reattached.") be detached---run in the background---and then later reattached.")
(home-page "http://www.brain-dump.org/projects/abduco/") (home-page "https://www.brain-dump.org/projects/abduco/")
(license isc))) (license isc)))