mbakke pushed a commit to branch master
in repository guix.
commit c21dae9b890d4bff598fe55134fde13a189a2c07
Author: Marius Bakke <[email protected]>
Date: Sat Oct 12 14:50:29 2019 +0200
gnu: BOINC: Update license.
* gnu/packages/distributed.scm (boinc-client)[license]: Add LGPL3+.
---
gnu/packages/distributed.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/distributed.scm b/gnu/packages/distributed.scm
index e78d62d..46f5cc5 100644
--- a/gnu/packages/distributed.scm
+++ b/gnu/packages/distributed.scm
@@ -74,7 +74,8 @@ 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.")
(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)