mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 02:59:17 -05:00
gnu: BOINC: Add a source file name.
While at it, future-proof the URL as well. * gnu/packages/distributed.scm (boinc-client)[source](file-name): New field.
This commit is contained in:
parent
c21dae9b89
commit
ecfc86a21d
1 changed files with 4 additions and 2 deletions
|
@ -18,6 +18,7 @@
|
|||
|
||||
(define-module (gnu packages distributed)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system gnu)
|
||||
|
@ -47,8 +48,9 @@ (define-public boinc-client
|
|||
(uri (git-reference
|
||||
(url "https://github.com/boinc/boinc.git")
|
||||
(commit (string-append "client_release/"
|
||||
"7.16/"
|
||||
version))))
|
||||
(version-major+minor version)
|
||||
"/" version))))
|
||||
(file-name (git-file-name "boinc" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0w2qimcwyjhapk3z7zyq7jkls23hsnmm35iw7m4s4if04fp70dx0"))))
|
||||
|
|
Loading…
Reference in a new issue