mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add FLANN.
* gnu/packages/maths.scm (flann): New variable.
This commit is contained in:
parent
a1703aa765
commit
194c7f95f1
1 changed files with 36 additions and 0 deletions
|
@ -1930,3 +1930,39 @@ (define-public dealii-openmpi
|
|||
"-DMPI_Fortran_COMPILER=mpifort"
|
||||
,@,cf))))
|
||||
(synopsis "Finite element library (with MPI support)")))
|
||||
|
||||
(define-public flann
|
||||
(package
|
||||
(name "flann")
|
||||
(version "1.8.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append
|
||||
"http://www.cs.ubc.ca/research/flann/uploads/FLANN/flann-"
|
||||
version "-src.zip"))
|
||||
(sha256
|
||||
(base32
|
||||
"022w8hph7bli5zbpnk3z1qh1c2sl5hm8fw2ccim651ynn0hr7fyz"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("unzip" ,unzip)))
|
||||
(inputs
|
||||
`(("hdf5" ,hdf5)
|
||||
("octave" ,octave)
|
||||
("python" ,python-2) ; print syntax
|
||||
;; ("python2-numpy" ,python2-numpy) ; only required for the tests
|
||||
("zlib" ,zlib)))
|
||||
(arguments
|
||||
`(#:tests? #f)) ; The test data are downloaded from the Internet.
|
||||
(home-page "http://www.cs.ubc.ca/research/flann/")
|
||||
(synopsis "Library for approximate nearest neighbors computation")
|
||||
(description "FLANN is a library for performing fast approximate
|
||||
nearest neighbor searches in high dimensional spaces. It implements a
|
||||
collection of algorithms and a system for automatically choosing the best
|
||||
algorithm and optimum parameters depending on the dataset.
|
||||
|
||||
FLANN is written in C++ and contains bindings for C, Octave and Python.")
|
||||
(license (license:non-copyleft "file://COPYING"
|
||||
"See COPYING in the distribution."))))
|
||||
|
|
Loading…
Reference in a new issue