efraim pushed a commit to branch master
in repository guix.
commit aa5df43668b63993ef6153789b67ab1b040ddb84
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon Nov 14 15:37:21 2022 +0200
gnu: imposm3: Don't use autogenerated tarball.
* gnu/packages/geo.scm (imposm3)[source]: Download using git-fetch.
---
gnu/packages/geo.scm | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 9895756864..2e5315faff 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -8,7 +8,7 @@
;;; Copyright © 2018 Joshua Sierles, Nextjournal <[email protected]>
;;; Copyright © 2018, 2019, 2020, 2021 Julien Lepiller <[email protected]>
;;; Copyright © 2019, 2020, 2021, 2022 Guillaume Le Vaillant <[email protected]>
-;;; Copyright © 2019, 2020, 2021 Efraim Flashner <[email protected]>
+;;; Copyright © 2019-2022 Efraim Flashner <[email protected]>
;;; Copyright © 2019, 2021 Wiktor Żelazny <[email protected]>
;;; Copyright © 2019, 2020 Hartmut Goebel <[email protected]>
;;; Copyright © 2020, 2022 Marius Bakke <[email protected]>
@@ -1260,13 +1260,14 @@ delivered to any client.")
(version "0.11.1")
(source
(origin
- (method url-fetch)
- (uri (string-append "https://github.com/omniscale/imposm3/archive/v"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/omniscale/imposm3")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "1w7b221z5k9254zn01imycxkyw62xigqizhwvrgxqmq1m9r5410l"))))
+ "1ifniw57l3s0sl7nb3zwxxm86i46451yrhfqnnkxr46cnpbzmwxr"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/omniscale/imposm3/cmd/imposm"