diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2023-06-25 22:28:16 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-02 02:00:01 +0200 |
commit | 6ea387bc614f16abacd9d3cab1a60911cd50c267 (patch) | |
tree | 52e6fd8cbeda12ca6cd4178484b625d82c910e70 /gnu | |
parent | 047b7e55b315b8609e6bc2eaf18d5de36b155735 (diff) | |
download | guix-6ea387bc614f16abacd9d3cab1a60911cd50c267.tar.gz guix-6ea387bc614f16abacd9d3cab1a60911cd50c267.zip |
gnu: missfits: Fetch sources from Git.
* gnu/packages/astronomy.scm (missfits)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/astronomy.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 27fe4260ec..13d30caae2 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2672,11 +2672,13 @@ PixInsight. It implements XISF 1.0 specification.") (version "2.8.0") (source (origin - (method url-fetch) - (uri (string-append "https://www.astromatic.net/download/missfits/" - "missfits-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/astromatic/missfits") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 "04jrd7fsvzr14vdmwgj2f6v97gdcfyjyz6jppml3ghr9xh12jxv5")))) + (base32 "12ndvrr3l5j7ph2i5f3qf0wqmv5ymsyjzxnnypqajsvliw72iprh")))) (build-system gnu-build-system) (arguments (list |