diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-10-13 23:04:06 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-10-13 23:04:06 +0200 |
commit | 378ebc048c033744b4f1dc13e16f4f2277d7529f (patch) | |
tree | 8411f2a9348d47858b2aca849377e91ea7f90833 /gnu/packages/distributed.scm | |
parent | d99e7ee0f2bbe4abe08552afaa9821036da2a760 (diff) | |
parent | 64855281c18bab87a61c77a18c9001e6e222fb08 (diff) | |
download | patches-378ebc048c033744b4f1dc13e16f4f2277d7529f.tar patches-378ebc048c033744b4f1dc13e16f4f2277d7529f.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/distributed.scm')
-rw-r--r-- | gnu/packages/distributed.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/distributed.scm b/gnu/packages/distributed.scm index 0eaa1d8b83..4e1acc4b67 100644 --- a/gnu/packages/distributed.scm +++ b/gnu/packages/distributed.scm @@ -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 @@ (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")))) @@ -72,12 +74,10 @@ (description "BOINC is a platform for high-throughput computing on a large scale (thousands or millions of computers). It can be used for volunteer computing (using consumer devices) or grid computing (using organizational -resources). It supports virtualized, parallel, and GPU-based applications. - -BOINC is distributed under the LGPL open source license. It can be used for -commercial purposes, and applications need not be open source.") +resources). It supports virtualized, parallel, and GPU-based applications.") (home-page "https://boinc.berkeley.edu/") - (license license:gpl3+))) + ;; BOINC is distributed as LGPL3+, with some individual modules under GPL3+. + (license (list license:lgpl3+ license:gpl3+)))) (define-public boinc-server (package (inherit boinc-client) |