diff options
author | Julien Lepiller <julien@lepiller.eu> | 2021-10-26 00:06:40 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2021-11-20 19:39:52 +0100 |
commit | 0481810ebfaae1973643455088b4e2cab0a941f1 (patch) | |
tree | d5dc9013c89efe6663b990e47d58a039f25bd226 | |
parent | e9d3f3656bd8a16deb1f643c9ed9f5706a6f9eaf (diff) | |
download | guix-0481810ebfaae1973643455088b4e2cab0a941f1.tar guix-0481810ebfaae1973643455088b4e2cab0a941f1.tar.gz |
gnu: Add ocaml-fftw3.
* gnu/packages/ocaml.scm (ocaml4.07-fftw3): Replace with...
(ocaml-fftw3) ...this. Use latest ocaml package.
-rw-r--r-- | gnu/packages/ocaml.scm | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 56c56dd929..99a6058e63 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6896,9 +6896,9 @@ language understood by ocamldoc.") ("tidy-html" ,tidy-html))) (properties '())))) -(define-public ocaml4.07-fftw3 +(define-public ocaml-fftw3 (package - (name "ocaml4.07-fftw3") + (name "ocaml-fftw3") (version "0.8.4") (source (origin @@ -6912,17 +6912,13 @@ language understood by ocamldoc.") "0l66yagjkwdcib6q55wd8wiap50vi23qiahkghlvm28z7nvbclfk")))) (build-system dune-build-system) (arguments - `(#:tests? #t - #:test-target "tests" - #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib - #:dune ,ocaml4.07-dune)) + `(#:test-target "tests")) (propagated-inputs `(("fftw" ,fftw) ("fftwf" ,fftwf))) (native-inputs - `(("ocaml-cppo" ,(package-with-ocaml4.07 ocaml-cppo)) - ("ocaml-lacaml" ,(package-with-ocaml4.07 ocaml-lacaml)))) + `(("ocaml-cppo" ,ocaml-cppo) + ("ocaml-lacaml" ,ocaml-lacaml))) (home-page "https://github.com/Chris00/fftw-ocaml") (synopsis |