guix: Unify fetch methods

This commit is contained in:
Hennadii Stepanov 2023-06-03 08:11:56 +01:00
parent a15388c606
commit 57fdedd0e9
No known key found for this signature in database
GPG Key ID: 410108112E7EA81F

View File

@ -32,7 +32,6 @@
(guix build-system gnu) (guix build-system gnu)
(guix build-system python) (guix build-system python)
(guix build-system trivial) (guix build-system trivial)
(guix download)
(guix gexp) (guix gexp)
(guix git-download) (guix git-download)
((guix licenses) #:prefix license:) ((guix licenses) #:prefix license:)
@ -254,12 +253,13 @@ and abstract ELF, PE and MachO formats.")
(name "osslsigncode") (name "osslsigncode")
(version "2.5") (version "2.5")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/mtrojnar/" (uri (git-reference
name "/archive/" version ".tar.gz")) (url "https://github.com/mtrojnar/osslsigncode")
(commit version)))
(sha256 (sha256
(base32 (base32
"03by9706gg0an6dn48pljx38vcb76ziv11bgm8ilwsf293x2k4hv")))) "1j47vwq4caxfv0xw68kw5yh00qcpbd56d7rq6c483ma3y7s96yyz"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(inputs (inputs
`(("openssl", openssl))) `(("openssl", openssl)))