aboutsummaryrefslogtreecommitdiff
path: root/contrib/guix/manifest.scm
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2023-06-03 08:11:56 +0100
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2023-06-28 12:35:14 +0100
commit57fdedd0e9269888c9a3c0ec76521dc66924299c (patch)
tree0316ec69635fce463951a1e2c7e2c1d667ee67f1 /contrib/guix/manifest.scm
parenta15388c6061bcbf21cb9584db19ed34e79f7206d (diff)
downloadbitcoin-57fdedd0e9269888c9a3c0ec76521dc66924299c.tar.xz
guix: Unify fetch methods
Diffstat (limited to 'contrib/guix/manifest.scm')
-rw-r--r--contrib/guix/manifest.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/guix/manifest.scm b/contrib/guix/manifest.scm
index b77a2a8efe..16e4ff4610 100644
--- a/contrib/guix/manifest.scm
+++ b/contrib/guix/manifest.scm
@@ -32,7 +32,6 @@
(guix build-system gnu)
(guix build-system python)
(guix build-system trivial)
- (guix download)
(guix gexp)
(guix git-download)
((guix licenses) #:prefix license:)
@@ -254,12 +253,13 @@ and abstract ELF, PE and MachO formats.")
(name "osslsigncode")
(version "2.5")
(source (origin
- (method url-fetch)
- (uri (string-append "https://github.com/mtrojnar/"
- name "/archive/" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mtrojnar/osslsigncode")
+ (commit version)))
(sha256
(base32
- "03by9706gg0an6dn48pljx38vcb76ziv11bgm8ilwsf293x2k4hv"))))
+ "1j47vwq4caxfv0xw68kw5yh00qcpbd56d7rq6c483ma3y7s96yyz"))))
(build-system cmake-build-system)
(inputs
`(("openssl", openssl)))