Skip to content

Commit 57fdedd

Browse files
committed
guix: Unify fetch methods
1 parent a15388c commit 57fdedd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

contrib/guix/manifest.scm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
(guix build-system gnu)
3333
(guix build-system python)
3434
(guix build-system trivial)
35-
(guix download)
3635
(guix gexp)
3736
(guix git-download)
3837
((guix licenses) #:prefix license:)
@@ -254,12 +253,13 @@ and abstract ELF, PE and MachO formats.")
254253
(name "osslsigncode")
255254
(version "2.5")
256255
(source (origin
257-
(method url-fetch)
258-
(uri (string-append "https://github.com/mtrojnar/"
259-
name "/archive/" version ".tar.gz"))
256+
(method git-fetch)
257+
(uri (git-reference
258+
(url "https://github.com/mtrojnar/osslsigncode")
259+
(commit version)))
260260
(sha256
261261
(base32
262-
"03by9706gg0an6dn48pljx38vcb76ziv11bgm8ilwsf293x2k4hv"))))
262+
"1j47vwq4caxfv0xw68kw5yh00qcpbd56d7rq6c483ma3y7s96yyz"))))
263263
(build-system cmake-build-system)
264264
(inputs
265265
`(("openssl", openssl)))

0 commit comments

Comments
 (0)