gnu: gdsl: Replace 'url-fetch' by 'git-fetch'.
Fixes <https://debbugs.gnu.org/25913>. * gnu/packages/datastructures.scm (gdsl)[source]: Replace 'url-fetch' by 'git-fetch'. [home-page]: Update. Co-authored-by: Ludovic Courtès <ludo@gnu.org>master
parent
9b65281de5
commit
74cb33c228
|
@ -37,14 +37,16 @@
|
||||||
(name "gdsl")
|
(name "gdsl")
|
||||||
(version "1.8")
|
(version "1.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "http://download.gna.org/gdsl/"
|
(uri (git-reference
|
||||||
"gdsl-" version ".tar.gz"))
|
(url "https://example.org") ;only hosted on Software Heritage
|
||||||
|
(commit "6adb53be8b8f9f2e4bbfc92d357eedeefb4c7430")))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1v64jvlnj8jfpphphgjgb36p0kv50kwfyqncf0y12f16v8ydyiaw"))))
|
"0a52g12d9sf9hhcyvwfd7xdazj2a9i9jh97cnlqf2ymvwnvjk1g0"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(home-page "http://home.gna.org/gdsl/")
|
(home-page "https://web.archive.org/web/20170502005430/http://home.gna.org/gdsl/")
|
||||||
(synopsis "Generic data structures library")
|
(synopsis "Generic data structures library")
|
||||||
(description "The Generic Data Structures Library (GDSL) is a collection
|
(description "The Generic Data Structures Library (GDSL) is a collection
|
||||||
of routines for generic data structures manipulation. It is a re-entrant
|
of routines for generic data structures manipulation. It is a re-entrant
|
||||||
|
|
Reference in New Issue