diff options
author | Olivier Dion <olivier.dion@polymtl.ca> | 2022-05-18 13:12:42 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-21 00:17:21 +0200 |
commit | 59e8037312aa69b578fcba72da541d4296f62a8f (patch) | |
tree | 79eaa95840d4b38c15746018c3bbd6020f29e6e4 | |
parent | 09d0d0f6a5280200d15f2d102c963a712c681b14 (diff) |
gnu: liburcu: Fix license
* gnu/packages/datastructures.scm (liburcu): Fix license.
[license]: Set to lgpl2.1 and expat.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/datastructures.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm index f247231ecf..4fa38ee3d4 100644 --- a/gnu/packages/datastructures.scm +++ b/gnu/packages/datastructures.scm @@ -155,7 +155,7 @@ synchronisation library. It provides read-side access that scales linearly with the number of cores. liburcu-cds provides efficient data structures based on RCU and lock-free algorithms. These structures include hash tables, queues, stacks, and doubly-linked lists.") - (license license:lgpl2.1+))) + (license (list license:lgpl2.1 license:expat)))) (define-public uthash (package |