diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-05 15:42:08 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-05 16:38:25 +0100 |
commit | 494b702a8958fc63c842eacaa6575044555889ae (patch) | |
tree | 301af882481bc61a04de5b969c0983a74fa41cbf | |
parent | f9dff4f7fa2732ca753d5bb6e6a43231b429b35b (diff) | |
download | guix-494b702a8958fc63c842eacaa6575044555889ae.tar guix-494b702a8958fc63c842eacaa6575044555889ae.tar.gz |
gnu: pscircle: Don't use unstable tarball.
* gnu/packages/admin.scm (pscircle)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
-rw-r--r-- | gnu/packages/admin.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index aa48441124..e11b1574b9 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2813,14 +2813,14 @@ support forum. It runs with the @code{/exec} command in most IRC clients.") (version "1.1.0") (source (origin - (method url-fetch) - (uri (string-append - "https://gitlab.com/mildlyparallel/pscircle/-/archive/v" - version "/pscircle-v" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/mildlyparallel/pscircle.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "1k757yf2bmgfrjd417l6kpcf83hlvi0z1791vz967mwcklrsb3fj")))) + "1sxdnhkcr26l29nk0zi1zkvkd7128xglfql47rdb1bx940vflgb6")))) (build-system meson-build-system) (native-inputs `(("pkg-config" ,pkg-config))) |