diff options
author | Dennis E. Mungai | 2016-02-23 17:37:00 +0300 |
---|---|---|
committer | Dennis E. Mungai | 2016-02-23 17:37:00 +0300 |
commit | b70b4572ebf97d83296b8bfd11263f07b1f385a3 (patch) | |
tree | 88c6a65fe7b02115d3e04799530366e532001fa2 | |
parent | 003dc6dfd82f61bfadf595058dfd6f1213b6ca4a (diff) | |
download | guix-bioinformatics-b70b4572ebf97d83296b8bfd11263f07b1f385a3.tar.gz |
Add fftw-openmpi as build dependencies.
Needed to build a running binary.
-rw-r--r-- | gn/packages/arrayfire.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gn/packages/arrayfire.scm b/gn/packages/arrayfire.scm index 6f326c9..4f4e004 100644 --- a/gn/packages/arrayfire.scm +++ b/gn/packages/arrayfire.scm @@ -32,6 +32,9 @@ #:use-module (gnu packages video) #:use-module (gnu packages tls) #:use-module (gnu packages textutils) + #:use-module (gnu packages fftw) + #:use-module (gnu packages fftw-openmpi) + #:use-module (gnu packages fftwf) #:use-module (gnu packages gl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages linux)) @@ -98,6 +101,12 @@ ("tinyxml" ,tinyxml) ("unzip" ,unzip) ("zip" ,zip) + ("freeimage" ,freeimage) + ("fftw" ,fftw) + ("fftwf" ,fftwf) + ("fftw-openmpi" ,fftw-openmpi) + ("atlas" ,atlas) + ("gfortran", gfortran) ("zlib" ,zlib))) (synopsis "ArrayFire: a general purpose GPU library. https://arrayfire.com") (description "ArrayFire is a high performance software library for parallel computing with an easy-to-use API. Its array based function set makes parallel programming simple.") |