[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/33: gnu: Add iir.
From: |
guix-commits |
Subject: |
13/33: gnu: Add iir. |
Date: |
Fri, 21 Oct 2022 13:20:52 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 9af6f1b624739179538d74866db7df6797cee31d
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Oct 16 02:00:01 2022 +0200
gnu: Add iir.
* gnu/packages/audio.scm (iir): New public variable.
---
gnu/packages/audio.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 37a38bae89..94325ccb72 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1101,6 +1101,39 @@ guitar amplification and a small range of classic
effects, signal processors and
generators of mostly elementary and occasionally exotic nature.")
(license license:gpl3+)))
+(define-public iir
+ (package
+ (name "iir")
+ (version "1.9.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/berndporr/iir1")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0wbh804as740kjvmyaqx4rwvwwrbwh0fnj979dvv1ljlx1p50bk0"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'delete-static-library
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (delete-file (string-append out "/lib/libiir_static.a"))))))))
+ (home-page "https://berndporr.github.io/iir1/")
+ (synopsis
+ "Real-time C++ @acronym{IIR, infinite impulse response} filter library")
+ (description
+ "This C++ library implements the Butterworth, RBJ, and Chebychev
+@acronym{IIR, infinite impulse response} filters. Samples are processed one by
+one, in real time. It can easily import coefficients generated with Python
+(@code{scipy}). It also avoids memory leaks by allocating memory at compile
+time, using templates, instead of calling @code{malloc()} or @code{new}.")
+ (license license:expat)))
+
(define-public infamous-plugins
(package
(name "infamous-plugins")
- 18/33: gnu: mpop: Update to 1.4.17., (continued)
- 18/33: gnu: mpop: Update to 1.4.17., guix-commits, 2022/10/21
- 29/33: gnu: ccache: Update to 4.6.3., guix-commits, 2022/10/21
- 30/33: gnu: console-setup: Update to 1.210., guix-commits, 2022/10/21
- 11/33: gnu: pd: Use G-expressions., guix-commits, 2022/10/21
- 28/33: gnu: headsetcontrol: Update to 2.6.1., guix-commits, 2022/10/21
- 07/33: gnu: hdparm: Update to 9.65., guix-commits, 2022/10/21
- 08/33: gnu: pd: Update to 0.52-2., guix-commits, 2022/10/21
- 23/33: guix-install.sh: Suggest what to do if fetching OpenPGP key(s) fails., guix-commits, 2022/10/21
- 24/33: guix-install.sh: Treat all uncaught errors as fatal., guix-commits, 2022/10/21
- 26/33: guix-install.sh: Cosmetically tweak non-interactive output., guix-commits, 2022/10/21
- 13/33: gnu: Add iir.,
guix-commits <=
- 14/33: gnu: dosbox-staging: Remove input labels., guix-commits, 2022/10/21
- 16/33: gnu: maradns: Update to 3.5.0022., guix-commits, 2022/10/21
- 19/33: gnu: imapfilter: Update to 2.7.6., guix-commits, 2022/10/21
- 25/33: guix-install.sh: Warn if we suspect dodgy automation., guix-commits, 2022/10/21
- 01/33: gnu: audit: Update to 3.0.9., guix-commits, 2022/10/21
- 03/33: gnu: jitterentropy-rngd: Use G-expressions., guix-commits, 2022/10/21
- 04/33: gnu: criu: Update to 3.17.1., guix-commits, 2022/10/21
- 15/33: gnu: dosbox-staging: Update to 0.79.1., guix-commits, 2022/10/21
- 09/33: gnu: pd: Remove trailing #t from phases., guix-commits, 2022/10/21
- 17/33: gnu: dnsmasq: Update to 2.87., guix-commits, 2022/10/21