summaryrefslogtreecommitdiff
path: root/gnu/packages/datastructures.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-12-13 17:18:24 +0100
committerLudovic Courtès <ludo@gnu.org>2021-12-13 17:48:25 +0100
commit8394619baceb118df92e355377fd543bb1aa501a (patch)
tree504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/datastructures.scm
parentaca2defe0172868295941fd9f0e97886f6e9b2d4 (diff)
gnu: Simplify package inputs.
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
Diffstat (limited to 'gnu/packages/datastructures.scm')
-rw-r--r--gnu/packages/datastructures.scm12
1 files changed, 5 insertions, 7 deletions
diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm
index e79fe76954f..2b00137a3e8 100644
--- a/gnu/packages/datastructures.scm
+++ b/gnu/packages/datastructures.scm
@@ -72,9 +72,7 @@ and heaps.")
72 (base32 "1pk6wmi28pa8srb4szybrwfn71jldb61c5vgxsiayxcyg1ya4qqh")))) 72 (base32 "1pk6wmi28pa8srb4szybrwfn71jldb61c5vgxsiayxcyg1ya4qqh"))))
73 (build-system gnu-build-system) 73 (build-system gnu-build-system)
74 (native-inputs 74 (native-inputs
75 `(("autoconf" ,autoconf) 75 (list autoconf automake libtool))
76 ("automake" ,automake)
77 ("libtool" ,libtool)))
78 (home-page "https://github.com/s-yata/marisa-trie") 76 (home-page "https://github.com/s-yata/marisa-trie")
79 (synopsis "Trie data structure C++ library") 77 (synopsis "Trie data structure C++ library")
80 (description "@acronym{MARISA, Matching Algorithm with Recursively 78 (description "@acronym{MARISA, Matching Algorithm with Recursively
@@ -149,7 +147,7 @@ in between these sequences may be different in both content and length.")
149 "085s437nig6bdiv9im4k4qwqbrbnc4qw9flqi16jlb493az0vcnb")))) 147 "085s437nig6bdiv9im4k4qwqbrbnc4qw9flqi16jlb493az0vcnb"))))
150 (build-system gnu-build-system) 148 (build-system gnu-build-system)
151 (native-inputs 149 (native-inputs
152 `(("perl" ,perl))) ; for tests 150 (list perl)) ; for tests
153 (home-page "https://liburcu.org/") 151 (home-page "https://liburcu.org/")
154 (synopsis "User-space RCU data synchronisation library") 152 (synopsis "User-space RCU data synchronisation library")
155 (description "liburcu is a user-space @dfn{Read-Copy-Update} (RCU) data 153 (description "liburcu is a user-space @dfn{Read-Copy-Update} (RCU) data
@@ -174,7 +172,7 @@ queues, stacks, and doubly-linked lists.")
174 (base32 "0k80bjbb6ss5wpmfmfji6xbyjm990hg9kcshwwnhdnh73vxkcd1m")))) 172 (base32 "0k80bjbb6ss5wpmfmfji6xbyjm990hg9kcshwwnhdnh73vxkcd1m"))))
175 (build-system gnu-build-system) 173 (build-system gnu-build-system)
176 (native-inputs 174 (native-inputs
177 `(("perl" ,perl))) 175 (list perl))
178 (arguments 176 (arguments
179 `(#:make-flags 177 `(#:make-flags
180 (list "CC=gcc") 178 (list "CC=gcc")
@@ -269,7 +267,7 @@ to the structure and choosing one or more fields to act as the key.")
269 out ,version))) 267 out ,version)))
270 #t)))))) 268 #t))))))
271 (native-inputs 269 (native-inputs
272 `(("libdivsufsort" ,libdivsufsort))) 270 (list libdivsufsort))
273 (home-page "https://github.com/simongog/sdsl-lite") 271 (home-page "https://github.com/simongog/sdsl-lite")
274 (synopsis "Succinct data structure library") 272 (synopsis "Succinct data structure library")
275 (description "The Succinct Data Structure Library (SDSL) is a powerful and 273 (description "The Succinct Data Structure Library (SDSL) is a powerful and
@@ -346,7 +344,7 @@ bytes of memory space, where n is the length of the string.")
346 "1li70vwsksva9c4yly90hjafgqfixi1g6d52qq9p6r60vqc4pkjj")))) 344 "1li70vwsksva9c4yly90hjafgqfixi1g6d52qq9p6r60vqc4pkjj"))))
347 (build-system cmake-build-system) 345 (build-system cmake-build-system)
348 (native-inputs 346 (native-inputs
349 `(("boost" ,boost))) ; needed for tests 347 (list boost)) ; needed for tests
350 (arguments 348 (arguments
351 `(#:phases 349 `(#:phases
352 (modify-phases %standard-phases 350 (modify-phases %standard-phases