diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2020-07-03 09:51:24 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2020-07-03 09:58:14 +0200 |
commit | c7ce30cd5d65d5738ff30505e97aa5dc17081631 (patch) | |
tree | 2b4e4a829304cb87a6f7587dc6dbbd475f58f0ca | |
parent | 5a2997e5a60fdbabc720f88f8e6b2e237989b1b2 (diff) | |
download | guix-c7ce30cd5d65d5738ff30505e97aa5dc17081631.tar.gz guix-c7ce30cd5d65d5738ff30505e97aa5dc17081631.zip |
gnu: Add cl-napa-fft3.
* gnu/packages/lisp-xyz.scm (sbcl-napa-fft3, cl-napa-fft3): New variables.
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 0519ac1532..0848603b56 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -12266,3 +12266,30 @@ portable Common Lisp.") (define-public ecl-bordeaux-fft (sbcl-package->ecl-package sbcl-bordeaux-fft)) + +(define-public sbcl-napa-fft3 + (let ((commit "f2d9614c7167da327c9ceebefb04ff6eae2d2236") + (revision "0")) + (package + (name "sbcl-napa-fft3") + (version (git-version "0.0.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkhuong/Napa-FFT3.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hxjf599xgwm28gbryy7q96j9ys6hfszmv0qxpr5698hxnhknscp")))) + (build-system asdf-build-system/sbcl) + (home-page "https://github.com/pkhuong/Napa-FFT3") + (synopsis "Fast Fourier Transform routines in Common Lisp") + (description + "Napa-FFT3 provides Discrete Fourier Transform (DFT) routines, but also +buildings blocks to express common operations that involve DFTs: filtering, +convolutions, etc.") + (license license:bsd-3)))) + +(define-public cl-napa-fft3 + (sbcl-package->cl-source-package sbcl-napa-fft3)) |