From b7eb1a8116b2caee7acf26fb963ae998fbdb4253 Mon Sep 17 00:00:00 2001 From: Giacomo Leidi Date: Tue, 5 Mar 2024 21:52:22 +0100 Subject: gnu: Add alsa-midi-latency-test. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/audio.scm (alsa-midi-latency-test): New variable. Change-Id: I35d3047cb997c5787de515a38ae0a0eb8f12600d Signed-off-by: Ludovic Courtès --- gnu/packages/audio.scm | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) (limited to 'gnu/packages/audio.scm') diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 578a0bd016..d2a856d8ed 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -31,7 +31,7 @@ ;;; Copyright © 2020 Vincent Legoll ;;; Copyright © 2020, 2021 Guillaume Le Vaillant ;;; Copyright © 2020 Jonathan Frederickson -;;; Copyright © 2020 Giacomo Leidi +;;; Copyright © 2020, 2024 Giacomo Leidi ;;; Copyright © 2020, 2021, 2023 Vinicius Monego ;;; Copyright © 2020 Michael Rohleder ;;; Copyright © 2021 jgart @@ -261,6 +261,41 @@ softsynth library that can be used with other applications.") ;; Player. license:gpl3+)))) +(define-public alsa-midi-latency-test + (let ((version "0.0.5") + (revision "0") + (commit "07e43f8a1e6fd6d3bd97a00f2ee5afb74cb66f95")) + (package + (name "alsa-midi-latency-test") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/koppi/alsa-midi-latency-test") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b3xd4z7zx6mmh6q2q7wnyd0hzikny2cikwzhaab3q86b551vb9n")))) + (build-system gnu-build-system) + (arguments + (list + #:tests? #f ;there are no tests + #:phases #~(modify-phases %standard-phases + (replace 'bootstrap + (lambda _ + (invoke "sh" "./autogen.sh")))))) + (native-inputs (list automake autoconf libtool)) + (inputs (list alsa-lib)) + (synopsis "Measure the roundtrip time of MIDI messages") + (description + "@code{alsa-midi-latency-test} measures the roundtrip time of a MIDI +message in the alsa subsystem of the Linux kernel using a high precision timer. +It calculates the worst case roundtrip time of all sent MIDI messages and +displays a histogram of the roundtrip time jitter.") + (home-page "https://github.com/koppi/alsa-midi-latency-test") + (license license:gpl2+)))) + (define-public webrtc-audio-processing (package (name "webrtc-audio-processing") -- cgit v1.2.3 From bf530017f0e847ae895919b32ef37d79fa636a1e Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sat, 17 Feb 2024 09:40:19 -0300 Subject: gnu: libdjinterop: Update to 0.20.2. * gnu/packages/audio.scm (libdjinterop): Update to 0.20.2. [build-system]: Use cmake-build-system. [arguments]: Delete the make-git-checkout-writable phase. Change-Id: I0e5c96834ce16d159479a30ab6089aa727a6d8d1 --- gnu/packages/audio.scm | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'gnu/packages/audio.scm') diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index d2a856d8ed..501242a4cf 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1597,7 +1597,7 @@ emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc.") (define-public libdjinterop (package (name "libdjinterop") - (version "0.16.0") + (version "0.20.2") (source (origin (method git-fetch) @@ -1606,15 +1606,8 @@ emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "16nrqpr90vb9ggmp9j73m0hspd7pmfdhh0g6iyp8vd7kx7g17qnk")))) - (build-system meson-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - ;; crate_test writes a database file to the source tree. - (add-after 'unpack 'make-git-checkout-writable - (lambda _ - (for-each make-file-writable (find-files "."))))))) + (base32 "0gbaji3d105vwshjfmnbxqrs42jjjxp41jqj5srncrfv3xmzsfkr")))) + (build-system cmake-build-system) (native-inputs (list boost pkg-config)) (inputs -- cgit v1.2.3