diff options
author | Dennis E. Mungai | 2016-02-23 17:47:59 +0300 |
---|---|---|
committer | Dennis E. Mungai | 2016-02-23 17:47:59 +0300 |
commit | a83c940bddf3be8dd041c00b989785e9ffe8891b (patch) | |
tree | 268daf4f342a18872263f07a06b84ffc4d41b273 /gn | |
parent | b70b4572ebf97d83296b8bfd11263f07b1f385a3 (diff) | |
download | guix-bioinformatics-a83c940bddf3be8dd041c00b989785e9ffe8891b.tar.gz |
Added essential headers.
I commit to master directly.
Needed: OpenCL headers.
Challenge accepted.
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/arrayfire.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gn/packages/arrayfire.scm b/gn/packages/arrayfire.scm index 4f4e004..b517917 100644 --- a/gn/packages/arrayfire.scm +++ b/gn/packages/arrayfire.scm @@ -36,7 +36,9 @@ #:use-module (gnu packages fftw-openmpi) #:use-module (gnu packages fftwf) #:use-module (gnu packages gl) + #:use-module (gnu packages glew) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages mesa) #:use-module (gnu packages linux)) (define-public arrayfire @@ -107,6 +109,14 @@ ("fftw-openmpi" ,fftw-openmpi) ("atlas" ,atlas) ("gfortran", gfortran) + ("glew" ,glew) + ("glu" ,glu) + ("libx11" ,libx11) + ("libxi" ,libxi) + ("libxrandr" ,libxrandr) + ("libxxf86vm" ,libxxf86vm) + ("inputproto" ,inputproto) + ("glproto" ,glproto) ("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.") |