diff options
author | Dennis E. Mungai | 2016-02-28 21:37:32 +0300 |
---|---|---|
committer | Dennis E. Mungai | 2016-02-28 21:37:32 +0300 |
commit | c4a22933adfe218e991715a1c1e25d2104c48900 (patch) | |
tree | 1de0e4dad7b82ad2f3067898ed5982f4f00d3a2a /gn/packages/arrayfire.scm | |
parent | 859709f054229f45eba23d1e3c58e6b3037c2172 (diff) | |
download | guix-bioinformatics-c4a22933adfe218e991715a1c1e25d2104c48900.tar.gz |
Lisp specific fixes.
Diffstat (limited to 'gn/packages/arrayfire.scm')
-rw-r--r-- | gn/packages/arrayfire.scm | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/gn/packages/arrayfire.scm b/gn/packages/arrayfire.scm index 5869a88..e529971 100644 --- a/gn/packages/arrayfire.scm +++ b/gn/packages/arrayfire.scm @@ -17,7 +17,7 @@ ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gn packages arrayfire) - #:use-module (guix packages) + #:use-module ((guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) @@ -33,15 +33,12 @@ #: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) - in algebra - ;; #: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 web) - #:use-module (gnu packages linux)) + #:use-module (gnu packages linux))) (define-public arrayfire (package @@ -51,11 +48,13 @@ (method url-fetch) (uri (string-append "https://github.com/arrayfire/arrayfire/archive/" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0rla0mi5wby8bkpzrj063y6js3d4dlfl3qwfvm8m8skfc21dz52p")))) (build-system cmake-build-system) - (arguments `(#:configure-flags '("-DCMAKE_BUILD_TYPE=Release -DBUILD_OPENCL=ON"))) + (arguments + `(#:configure-flags '("-DCMAKE_BUILD_TYPE=Release -DBUILD_OPENCL=ON"))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) @@ -179,7 +178,6 @@ ("zlib" ,zlib))) (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. It is easy to integrate into existing applications and does not lay claim to the main loop. -GLFW is written in C and has native support for Windows, OS X and many Unix-like systems using the X Window System, such as Linux and FreeBSD. -GLFW is licensed under the zlib/libpng license.") + (description "glfw is an Open Source, multi-platform library for creating windows with OpenGL contexts and receiving input and events.") (license license:gpl2+))) + |