diff options
author | Dennis E. Mungai | 2016-02-29 14:42:35 +0300 |
---|---|---|
committer | Dennis E. Mungai | 2016-02-29 14:42:35 +0300 |
commit | 2b4c04d952bec10c54ee06bcf6692e0f1da47e0b (patch) | |
tree | 5e8b87c173102f6b68626a753fac43c015565865 /gn/packages/arrayfire.scm | |
parent | 419f84b3a90ebca9e97537139b89de80ad9e4166 (diff) | |
download | guix-bioinformatics-2b4c04d952bec10c54ee06bcf6692e0f1da47e0b.tar.gz |
Fixed licensing stuff.
Package can now build. Tracking build dependencies.
Diffstat (limited to 'gn/packages/arrayfire.scm')
-rw-r--r-- | gn/packages/arrayfire.scm | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/gn/packages/arrayfire.scm b/gn/packages/arrayfire.scm index 3244680..060339f 100644 --- a/gn/packages/arrayfire.scm +++ b/gn/packages/arrayfire.scm @@ -69,7 +69,6 @@ ("dbus" ,dbus) ("enca" ,enca) ("eudev" ,eudev) - ("freetype" ,freetype) ("glew" ,glew) ("libcap" ,libcap) ("libjpeg" ,libjpeg) @@ -78,7 +77,6 @@ ("libyajl" ,libyajl) ("mesa-utils" ,mesa-utils) ("mysql" ,mysql) - ("openssl" ,openssl) ("python" ,python-2) ("freeimage" ,freeimage) ("fftw" ,fftw) @@ -86,15 +84,14 @@ ("fftw-openmpi" ,fftw-openmpi) ("glew" ,glew) ("glu" ,glu) - ("cmake" ,cmake) - ("zlib" ,zlib))) + ("cmake" ,cmake))) (build-system cmake-build-system) (arguments `(#:configure-flags '("-DCMAKE_BUILD_TYPE=Release -DBUILD_OPENCL=ON"))) (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.") (home-page "http://arrayfire.com/") - (license gpl3+))) + (license (list gpl2 gpl2+ gpl3 gpl3+)))) (define-public glfw (package @@ -118,7 +115,6 @@ (inputs `(("curl" ,curl) ("dbus" ,dbus) ("enca" ,enca) - ("freetype" ,freetype) ("eudev" ,eudev) ("glew" ,glew) ("libcap" ,libcap) @@ -127,11 +123,9 @@ ("libtiff" ,libtiff) ("mesa-utils" ,mesa-utils) ("mysql" ,mysql) - ("openssl" ,openssl) - ("python" ,python-2) - ("zlib" ,zlib))) + ("python" ,python-2))) (home-page "http://www.glfw.org/") (synopsis "glfw is an Open Source, multi-platform library for creating windows with OpenGL contexts and receiving input and events.") (description "glfw is an Open Source, multi-platform library for creating windows with OpenGL contexts and receiving input and events.") - (license gpl3+))) + (license (list gpl2)))) |