diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-28 01:23:59 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-28 05:36:12 +0200 |
commit | 62b3a9b4c1a0694feb8758be908018e390170f86 (patch) | |
tree | 76726d0b557c5a2ada983dc801555fb497491ec7 /gnu/packages/markup.scm | |
parent | 67e4abc53115ad81579f1ea38e4aabfee1060b5a (diff) | |
download | patches-62b3a9b4c1a0694feb8758be908018e390170f86.tar patches-62b3a9b4c1a0694feb8758be908018e390170f86.tar.gz |
gnu: smu: Don't use unstable tarball.
* gnu/packages/markup.scm (smu)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
Diffstat (limited to 'gnu/packages/markup.scm')
-rw-r--r-- | gnu/packages/markup.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm index 2717ac35cd..6f1f9f6f68 100644 --- a/gnu/packages/markup.scm +++ b/gnu/packages/markup.scm @@ -23,6 +23,7 @@ (define-module (gnu packages markup) #:use-module (guix licenses) #:use-module (guix download) + #:use-module (guix git-download) #:use-module (guix packages) #:use-module (guix build-system gnu) #:use-module (guix build-system trivial) @@ -227,12 +228,13 @@ for parsing and rendering CommonMark.") (version "1.5") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/Gottox/smu/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/Gottox/smu.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "194kc08070g70ax9lg7jcr6iancbmgfgims8zfkpj9lnb3wiifzk")))) + (base32 "1jm7lhnzjx4q7gcwlkvsbffcy0zppywyh50d71ami6dnq182vvcc")))) (build-system gnu-build-system) (arguments `(#:make-flags (list "CC=gcc" |