diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-30 15:47:53 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:53:57 +0200 |
commit | 3d78bf0e1093d047f41a24676cd6c3f5179a8c6a (patch) | |
tree | e30339c741680276c271629dd858e9dcc3fb263e /gnu/packages/version-control.scm | |
parent | 09be6a5f122e0f898fb9e157fbcfb04af553ec57 (diff) | |
download | patches-3d78bf0e1093d047f41a24676cd6c3f5179a8c6a.tar patches-3d78bf0e1093d047f41a24676cd6c3f5179a8c6a.tar.gz |
gnu: python-ghp-import: Don't use unstable tarball.
* gnu/packages/version-control.scm (python-ghp-import)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
Diffstat (limited to 'gnu/packages/version-control.scm')
-rw-r--r-- | gnu/packages/version-control.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index ab5f661d7a..6579e9043f 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -772,14 +772,13 @@ a built-in cache to decrease server I/O pressure.") (version "0.5.5") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/davisp/ghp-import/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/davisp/ghp-import.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 - "0x887v690xsac2hzjkpbvp3a6crh3m08mqbk3nb4xwc9dnk869q7")))) + (base32 "12pmw3zz3i57ljnm0rxdyjqdyhisbvy18mjwkb3bzp5pgzs2f45c")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases |